Skip to main content

Another simple alternative to django-cities

Project description

django-cities-tiny -- *Simple django-cities alternative*
=========================================================

This add-on provides models and commands to import country/zone/city data into your
database.
The data is pulled from `GeoNames
<http://www.geonames.org/>`_ and contains:

- country names
- administrative division zones
- city names

Spatial query support is not required by this application.

This application is very simple and is useful if you want to make a simple
address book for example. If you intend to build a fully featured spatial
database, you should use
`django-cities
<https://github.com/coderholic/django-cities>`_.

This is a fork of django-cities-light by James Pic. The main difference of
django-cities-tiny is:

- support for localized names (from alternateNames.txt)
- support for administrative division zones (from admin1CodesASCII.txt,
admin2Codes.txt, or from XX.txt)
- required Django 1.0+, Python 2.3+ and no other dependences

Installation
------------

Install django-cities-tiny::

easy_install django-cities-tiny

Add `cities_tiny` to your `INSTALLED_APPS`.

Now, run syncdb, it will create all required tables for models::

./manage.py syncdb

Data update
-----------

Finnaly, populate your database with command::

./manage.py citiestinyrefresh

This command is well documented, consult the help with::

./manage.py help citiestinyrefresh

Limiting data to import
---------------------

If you want to import only cities from France, USA and Belgium you could do as
such in your settings.py::

CITIES_TINY_COUNTRIES = ('FR', 'US', 'BE')

Configure logging
-----------------

To get output from citiestinyrefresh command simply pass the -v2 or or
--verbosity=2 option. Also if you use Django 1.3+, you may configure logging
system in your settings.py, simply configure a handler and formatter for
`cities_tiny` logger. For example::

LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'simple': {
'format': '%(levelname)s %(message)s'
},
},
'handlers': {
'console':{
'level':'DEBUG',
'class':'logging.StreamHandler',
'formatter': 'simple'
},
},
'loggers': {
'cities_tiny': {
'handlers':['console'],
'propagate': True,
'level':'DEBUG',
},
# also use this one to see SQL queries
'django': {
'handlers':['console'],
'propagate': True,
'level':'DEBUG',
},
}
}

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-cities-tiny-1.0.tar.gz (11.5 kB view details)

Uploaded Source

Built Distribution

django_cities_tiny-1.0-py2.6.egg (23.8 kB view details)

Uploaded Source

File details

Details for the file django-cities-tiny-1.0.tar.gz.

File metadata

File hashes

Hashes for django-cities-tiny-1.0.tar.gz
Algorithm Hash digest
SHA256 2e7dcdda55739c68bfee9a7b8b83cdb73a69d6c67c19ebf8a443084fa3db77d3
MD5 a28d3a1864b9c3c1ac902fef266c392e
BLAKE2b-256 bedd0d9ce30ccd19b3c138b86f42570e1bddc5d81e7ed36a75ea57f38f17584f

See more details on using hashes here.

File details

Details for the file django_cities_tiny-1.0-py2.6.egg.

File metadata

File hashes

Hashes for django_cities_tiny-1.0-py2.6.egg
Algorithm Hash digest
SHA256 e88890dbdbe54162d1f6f1c9cb3ff62726e11fab6cb4b223ac10b10bfd263555
MD5 ce892756930347eea32244aacd4449de
BLAKE2b-256 fa09ba65eba216b88d25f5ff2869d2d4eaf5566995f4d29acecf71be67f2d711

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page