Metadata-Version: 1.1
Name: django-nuts
Version: 1.1.1
Summary: Django application providing database of European NUTS and LAU
Home-page: https://github.com/misli/django-nuts
Author: Jakub Dorňák
Author-email: jakub.dornak@misli.cz
License: BSD
Description-Content-Type: UNKNOWN
Description: Django NUTS
        ===========
        
        Django application providing database of European NUTS and LAU
        
        Installation
        ------------
        
        .. code:: shell
        
            pip install django-nuts
        
        
        Configuration
        -------------
        
        Add ``'django_nuts'`` to ``settings.INSTALLED_APPS``.
        
        
        Data migration
        --------------
        
        .. code:: shell
        
            python manage.py migrate
        
        
        Load / update data
        ------------------
        
        You may load the data manually from the shell (``python manage.py shell``)
        
        .. code:: python
        
            from django_nuts import load_nuts, load_lau
        
            # load all NUTS and LAU (note that nuts must be loaded first)
            load_nuts(), load_lau()
        
            # load NUTS and LAU for some particular countries
            load_nuts('CZ', 'SK'), load_lau('CZ', 'SK')
        
            # load NUTS and LAU using celery task (requires celery)
            from django_nuts.tasks import load_nuts, load_lau
            load_nuts.delay('CZ'), load_lau.delay('CZ')
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
