Metadata-Version: 1.0
Name: django-googl
Version: 0.1.3
Summary: Django shorturl via goo.gl
Home-page: https://github.com/avelino/django-googl/
Author: Thiago Avelino
Author-email: thiagoavelinoster@gmail.com
License: BSD
Download-URL: https://github.com/avelino/django-googl/tarball/master
Description: # django-googl
        [![PyPi version](https://pypip.in/v/django-googl/badge.png)](https://crate.io/packages/django-googl/)
        [![PyPi downloads](https://pypip.in/d/django-googl/badge.png)](https://crate.io/packages/django-googl/)
        
        Django short url on goo.gl
        
        http://pypi.python.org/pypi/django-googl
        
        
        # Installation
        
            pip install django-googl
        
        
        # Usage
        
        Add **googl** to your *INSTALLED_APPS*
        
        Load **googl** in your template:
        
            {% load googl %}
        
        And use **googl** filter:
        
            {{ "http://google.com"|googl }}
        
        Use **googl** in backend:
        
            from googl.short import GooglUrlShort
            
            GooglUrlShort("http://avelino.us/").short()
        
Keywords: django apps googl google api short url
Platform: UNKNOWN
Classifier: Environment :: Plugins
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
