Geonames data for continents, cities and US states.
Project description
A Python library that provides functions to retrieve names, ISO and FIPS codes of continents, countries as well as US states and counties as Python dictionaries. The country and city datasets also include population and geographic data.
Geonames data is obtained from GeoNames.
Installation
To install geonamescache, run:
$ sudo pip install geonamescache
Or, if necessary:
$ sudo easy_install geonamescache
Usage
A simple usage example:
import geonamescache gc = geonamescache.GeonamesCache() countries = gc.get_countries() # print countries dictionary print(countries) # you really wanna do something more useful with the data...
Methods
Currently geonamescache provides the following methods, that all return dictionaries with the requested data:
get_continents()
get_countries()
get_us_states()
get_cities()
get_countries_by_names()
get_us_states_by_names()
get_cities_by_name(name)
get_us_counties()
Mappers
The mappers module provides function(s) to map data properties. Currently you can create a mapper that maps country properties, e. g. the name property to the iso3 property, to do so you’d write the following code:
from geonamescache.mappers import country mapper = country(from_key='name', to_key='iso3') iso3 = mapper('Spain') # iso3 is assigned ESP
Contributing
Fork the repository on GitHub
Commit your changes to the develop branch
Write test(s) for any new feature
Push your changes and send a pull request
If you wish to build the data from scratch, you can run the fabric file, fabfile.py. Before you can run this, you need to create an account in the Geonames system, then activate your account for API usage. Once you’ve created your account, you can run:
fab dl # Download the geonames data to the data directory GEONAMES_USER=<your-username-here> fab tojson # Convert the downloaded data to json
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
Built Distribution
File details
Details for the file geonamescache-1.0.1.tar.gz
.
File metadata
- Download URL: geonamescache-1.0.1.tar.gz
- Upload date:
- Size: 740.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 874bd8da0827a5a9fe68c5a5dd400378a2c0680f68c101f93cb3c25f45a200af |
|
MD5 | 34337ddb442445134fbeb998e72e29ea |
|
BLAKE2b-256 | b4d8b742a07727bd5a56a6e309c80b03bb31dc937e8b9587b0232437003f4d13 |
File details
Details for the file geonamescache-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: geonamescache-1.0.1-py3-none-any.whl
- Upload date:
- Size: 775.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94b5a37c62d53fd37f56fee957f4914da52489c5bde90a58951efa699b7edf03 |
|
MD5 | 4e2a9266b62e53b3d5df4755010f7c63 |
|
BLAKE2b-256 | f466586b63536bc578a6d28ffc1114959f51b2ca1a9582f9b987206b3ba9aa86 |