Skip to content

Latest commit

 

History

History
90 lines (57 loc) · 1.8 KB

README.rst

File metadata and controls

90 lines (57 loc) · 1.8 KB

GeoName Places

https://travis-ci.com/acdh-oeaw/acdh-django-geonames.svg?branch=master Documentation Status

A django package providing models and views for Geoname Places

Documentation

The full documentation is at https://acdh-django-geonames.readthedocs.io.

Quickstart

Install GeoName Places:

pip install acdh-django-geonames

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'gn_places.apps.GnPlacesConfig',
    ...
)

Add GeoName Places's URL patterns:

from gn_places import urls as gn_places_urls


urlpatterns = [
    ...
    url(r'^', include(gn_places_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Development commands

pip install -r requirements_dev.txt
invoke -l

Credits

Tools used in rendering this package: