https://github.com/yaph/geonamescache
geonamescache - a Python library for quick access to a subset of GeoNames data.
https://github.com/yaph/geonamescache
counties countries fips geo geodata geonames hacktoberfest iso-codes python python-package states
Last synced: 6 months ago
JSON representation
geonamescache - a Python library for quick access to a subset of GeoNames data.
- Host: GitHub
- URL: https://github.com/yaph/geonamescache
- Owner: yaph
- License: mit
- Created: 2012-05-16T09:49:21.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-07-25T23:05:18.000Z (about 1 year ago)
- Last Synced: 2025-03-29T00:12:17.747Z (6 months ago)
- Topics: counties, countries, fips, geo, geodata, geonames, hacktoberfest, iso-codes, python, python-package, states
- Language: Python
- Homepage: https://pypi.org/project/geonamescache/
- Size: 22 MB
- Stars: 105
- Watchers: 3
- Forks: 40
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# GeonamesCache
[](https://pypi.python.org/pypi/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](http://www.geonames.org/).
## Installation
pip install geonamescache
## Usage
A simple example:
import geonamescache
gc = geonamescache.GeonamesCache()
print(gc.get_countries())## 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 population 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, contains\_search=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 insensitive, it can be made case sensitive by changing `case_sensitive` to True.
* By default the search is contains, it can be made exact equality by changing `contains_search` 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`.