Python wrapper for Geocod.io API
Project description
Python wrapper for Geocod.io geocoding API.
Features
Geocode an individual address
Batch geocode up to 10,000 addresses at a time
Parse an address into its identifiable components
Read the complete Geocod.io documentation for service documentation.
Installation
pygeocodio requires requests 2.0.0 or greater and will ensure requests is installed:
pip install pygeocodio
Using
Import the API client and ensure you have a valid API key:
>>> from geocodio import GeocodioClient >>> client = GeocodioClient(MY_KEY) >>> geocoded_location = client.geocode("42370 Bob Hope Drive, Rancho Mirage CA")
The result from the Geocod.io service is a dictionary including your query, its components, and a list of matching results:
>>> geocoded_location { "input": { "address_components": { "number": "42370", "street": "Bob Hope", "suffix": "Dr", "city": "Rancho Mirage", "state": "CA" }, "formatted_address": "42370 Bob Hope Dr, Rancho Mirage CA" }, "results": [ { "address_components": { "number": "42370", "street": "Bob Hope", "suffix": "Dr", "city": "Rancho Mirage", "state": "CA", "zip": "92270" }, "formatted_address": "42370 Bob Hope Dr, Rancho Mirage CA, 92270", "location": { "lat": 33.738987255507, "lng": -116.40833849559 }, "accuracy": 1 }, { "address_components": { "number": "42370", "street": "Bob Hope", "suffix": "Dr", "city": "Rancho Mirage", "state": "CA", "zip": "92270" }, "formatted_address": "42370 Bob Hope Dr, Rancho Mirage CA, 92270", "location": { "lat": 33.738980796909, "lng": -116.40833917329 }, "accuracy": 0.8 } ] }
This returned several geolocation results in descending order of accuracy, so the first and most accurate geocoded location latitude and longitude can be accessed using the coords attribute:
>>> geocoded_location.coords (-116.40833849559, 33.738987255507)
You can also geocode a list of addresses:
>>> geocoded_addresses = geocodio.geocode(['1600 Pennsylvania Ave, Washington, DC', '3101 Patterson Ave, Richmond, VA, 23221'])
Return just the coordinates for the list of geocoded addresses:
>>> geocoded_addresses.coords [(-116.40833849559, 33.738987255507), (-116.40833849559, 33.738987255507)]
Lookup an address by formatted address:
>>> geocoded_addresses.addresses.get['1600 Pennsylvania Ave, Washington, DC'].coords (-116.40833849559, 33.738987255507)
Note that to perform the key based lookup you must use the get method. This preserves the list’s index based lookup.
And if you just want to parse an individual address into its components:
>>> client.parse('1600 Pennsylvania Ave, Washington DC') { "address_components": { "number": "1600", "street": "Pennsylvania", "suffix": "Ave", "city": "Washington", "state": "DC" }, "formatted_address": "1600 Pennsylvania Ave, Washington DC" }
The return value is simple enough to us as the returned dictionary.
History
0.1.1 (2014-01-22)
Adds requests to install_requires in setup.py and drops minimum version to 1.0.0
0.1.0 (2014-01-21)
First release on PyPI.
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
File details
Details for the file pygeocodio-0.1.1.tar.gz
.
File metadata
- Download URL: pygeocodio-0.1.1.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 560316b34d91ab11c8ab921acc6d5c7e33492f9bfed5759681b09adf0ca65cc1 |
|
MD5 | 93ccecaf6385b51d115fbcd8d4074980 |
|
BLAKE2b-256 | 380c47eb57ae035d05ae2899436e33e196def1cb2a10ee0d92f9a5cce021a32b |