Simple alternative to django-cities
Project description
django-cities-light – Simple django-cities alternative
This add-on provides models and commands to import country, region/state, and city data in your database.
The data is pulled from GeoNames and contains cities, regions/states and countries.
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.
Requirements:
Python 2.7 or 3.3,
Django >= 1.6 for django-cities-light 3.x.x
or Django >= 1.4 <= 1.6 for django-cities-light 2.x.x
MySQL (better in 3.x.x) or PostgreSQL or SQLite.
django-south is optionnal, but recommended, for django <= 1.6
Yes, for some reason, code that used to work on MySQL (not without pain xD) does not work anymore. So we’re now using django.db.transaction.atomic which comes from Django 1.6 just to support MySQL quacks.
Upgrade
See CHANGELOG.
Installation
Install django-cities-light:
pip install django-cities-light
Or the development version:
pip install -e git+git@github.com:yourlabs/django-cities-light.git#egg=cities_light
Add cities_light to your INSTALLED_APPS.
Configure filters to exclude data you don’t want, ie.:
CITIES_LIGHT_TRANSLATION_LANGUAGES = ['fr', 'en'] CITIES_LIGHT_INCLUDE_COUNTRIES = ['FR']
Now, run syncdb, it will only create tables for models that are not disabled:
./manage.py syncdb
Note that this project supports django-south. It is recommended that you use south too else you’re on your own for migrations/upgrades.
Data update
Finally, populate your database with command:
./manage.py cities_light
This command is well documented, consult the help with:
./manage.py help cities_light
Resources
You could subscribe to the mailing list ask questions or just be informed of package updates.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for django-cities-light-3.1.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fd8b353efc7e24a658843ec45cef9d0f2a45aecd6df06cc7e3d752e0764938d |
|
MD5 | 1d270359ea5bfac35f926a4c74a77138 |
|
BLAKE2b-256 | 5abd61e732b4e6226f6f72c666de81e6ebeeae6814aed30e007df439c4510396 |