Metadata-Version: 1.1
Name: django-terralego
Version: 0.1
Summary: Django mixins for Terralego services.
Home-page: https://terralego.fr
Author: Autonomens
Author-email: contact@autonomens.fr
License: MIT
Description: # Django Terralego
        
        ## Getting started
        
        Install django-terralego:
        
        ```shell
        $ pip install django-terralego
        ```
        
        Configure terralego by updating your `settings.py`:
        
        ```python
        TERRALEGO = {
            'USER': 'user',
            'PASSWORD': 'password',
        }
        ```
        
        You can disabled the requests made to terralego by setting the terrelago `ENABLED` setting to `False`:
        
        ```python
        TERRALEGO = {
            'ENABLED': False,
        }
        ```
        
        
        ## Exceptions
        
        In case of errors, the exceptions raised are the one from [requests](http://docs.python-requests.org/en/master/user/quickstart/#errors-and-exceptions).
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django
