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',
},
}
}
=========================================================
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
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)
Built Distribution
django_cities_tiny-1.0-py2.6.egg
(23.8 kB
view details)
File details
Details for the file django-cities-tiny-1.0.tar.gz
.
File metadata
- Download URL: django-cities-tiny-1.0.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e7dcdda55739c68bfee9a7b8b83cdb73a69d6c67c19ebf8a443084fa3db77d3 |
|
MD5 | a28d3a1864b9c3c1ac902fef266c392e |
|
BLAKE2b-256 | bedd0d9ce30ccd19b3c138b86f42570e1bddc5d81e7ed36a75ea57f38f17584f |
File details
Details for the file django_cities_tiny-1.0-py2.6.egg
.
File metadata
- Download URL: django_cities_tiny-1.0-py2.6.egg
- Upload date:
- Size: 23.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e88890dbdbe54162d1f6f1c9cb3ff62726e11fab6cb4b223ac10b10bfd263555 |
|
MD5 | ce892756930347eea32244aacd4449de |
|
BLAKE2b-256 | fa09ba65eba216b88d25f5ff2869d2d4eaf5566995f4d29acecf71be67f2d711 |