Metadata-Version: 1.1
Name: django-dpa-chile
Version: 1.0.5b1
Summary: Political-Administrative Division of Chile
Home-page: https://github.com/jupitercl/django-dpa-chile
Author: Francisco Jordan
Author-email: franciscojordan@live.com
License: MIT
Description: # django-dpa-chile
        ### Political-Administrative Division of Chile
        ### Regiones - Provincias - Comunas
        Information obtained from the api of Modernization and Digital Government Unit
        https://apis.digital.gob.cl/dpa
        
        ## Installation
        
        install `django-dpa-chile` using `pip`
        
        ```sh
        pip install -U django-dpa-chile
        ```
        
        add `django_dpa_chile` to INSTALLED_APPS
        
        __settings.py__
        
        ```python
        # ...
        
        INSTALLED_APPS =[
          ...
          'django_dpa_chile'
          ]
        
        # ...
        ```
        
        ## Populate
        
        ```sh
        python manage.py populate_dpa_chile
        ```
        
        ## Use
        
        ```python
        from django_dpa_chile.models import Region, Provincia, Comuna
        ```
Keywords: django chile comunas regiones provincias
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Spanish
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
