Metadata-Version: 2.1
Name: django-geonames-api
Version: 0.8.2
Summary: A simple Django app to implement the geonames database.
Home-page: https://www.example.com/
Author: Nicolas Pieuchot
Author-email: n.pieuchot@zero-gachis.com
License: BSD License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: django-haystack (==2.8.1)
Requires-Dist: django-haystack-elasticsearch5 (==0.7)
Requires-Dist: django-autocomplete-light (==3.3.2)
Requires-Dist: six (==1.11.0)
Requires-Dist: django-tastypie (==0.14.2)

===============
django-geonames
===============

django-geonames is a simple Django app to implement the geonames database in
your Django application. (load a contry from geonames, have the geographic
autocompletion)

No detailed documentation is available for the time being.

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

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

    INSTALLED_APPS = [
        ...
        'geography',
        ...
    ]

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

How to test?
------------

python runtests.py --settings test_settings


