Metadata-Version: 2.1
Name: django-geonames-cities
Version: 0.2
Summary: A Django app to have a local copy of some geonames.org's data
Home-page: https://github.com/davidegalletti/django_geonames
Author: Davide Galletti
Author-email: davide@c4k.it
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.6
License-File: LICENSE

===============
DJANGO GEONAMES
===============

Alpha: DO NOT USE IN PRODUCTION

Django geonames is a Django app that allows you to have a local replica of some data from https://geonames.org. It has management commands to copy locally:
1. The countries of the world
2. All the administrative divisions of one or more countries specified in the configuration
3. If Italan data is downloaded, the management command downloads also some data from Istituto Italiano di Statistica https://www.istat.it/ to enable the calculation of the Italian national identifier Codice Fiscale.

Quick start
-----------

1. Add "geonames" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'geonames',
    ]

2. Run ``python manage.py migrate`` to create the models.

4. Configure ....


