Geonames data for continents, cities and US states.
Project description
GeonamesCache
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
pip 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...
Settings
Cities dataset
When creating a GeonamesCache
you can set the min_city_population
parameter to either of 500, 1000, 5000 or the default 15000. The smaller the minimum popluation the more cities are included in the cities dataset.
New in version 1.4
Methods
Currently geonamescache provides the following methods, that 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()
In addition you can search for cities by name.
- search_cities('NAME', case_sensitive=True)
This function returns a list of city records that match the given NAME
.
- By default the
alternatenames
attribute is searched for matches. - By default the search is case sensitive, it can be made case insensitive by changing
case_sensitive
to False.
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
Please write test(s) for any new feature. If you wish to build the data from scratch, run make dl
and make 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.6.0.tar.gz
.
File metadata
- Download URL: geonamescache-1.6.0.tar.gz
- Upload date:
- Size: 25.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b140b253fdcea593edb191ba7022c3d678ad11e2bf86fa6d0a743fff4659a87b |
|
MD5 | 1342f2805d697c751457e61dab5d123f |
|
BLAKE2b-256 | 5423ec00d44d4e9086cd6bb4893a5af33780e4841b5f734c94491127bf9d3dd1 |
File details
Details for the file geonamescache-1.6.0-py3-none-any.whl
.
File metadata
- Download URL: geonamescache-1.6.0-py3-none-any.whl
- Upload date:
- Size: 26.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1112dda936e145a989436fd8b3ac7bf3d82b63094ccd8944eb6c7c549c19b5e |
|
MD5 | 658fb3d862b9bba7c57cc237143f4373 |
|
BLAKE2b-256 | c65e45c907597575094440f089050b3f17df578c00b15e57420b6e8397794c2c |