A simple client for the SmartyStreets address validation and geolocation API
Project description
A wrapper for the SmartyStreets address validation and geolocation API.
Other Python libraries exist but skip out on multiple address submission and make opinionated decisions about how to transform the return data.
Free software: BSD license
Documentation: https://smartystreetspy.readthedocs.org.
Features
SmartyStreets.py aims to provide a sane, tested, and feature complete wrapper to the SmartyStreets LiveAddress API, including address lookup for validation and geolocation, as well as zipcode lookup and validation.
Installation
SmartyStreets.py requires the requests library and will install it if it is found missing. Installed versions < 2.0 will be upgraded.:
pip install smartystreets.py
Basic usage
API client
Create a client instance with your key:
from smartystreets import Client client = Client(AUTH_ID, AUTH_TOKEN)
Create a client instance with SmartyStreets configuration options:
client = Client(AUTH_ID, AUTH_TOKEN, standardize=True, invalid=False, logging=False)
These options correspond to the x-standardize-only, x-include-invalid, and x-suppress-logging headers for opening up results to standardized but not necessarily deliverable addresses, including invalid delivery addresses, and toggling SmartyStreets API logging, respectively.
Since the SmartyStreets API only permits up to 100 addresses to be looked up at once the client will raise an exception if more than 100 are provided. You can turn off this functionality using the truncate_addresses option, which will silently truncate the list to the first 100 addresses:
client = Client(AUTH_ID, AUTH_TOKEN, truncate_addresses=True)
Address lookup
Simple address lookup:
client.street_address("100 Main St Richmond, VA")
Multiple simple street addresses:
client.street_addresses(["100 Main St Richmond, VA", "100 Main St Richmond, VA"])
Note that these are different function names.
You can also use dictionaries including detailed data:
client.street_address({ 'input_id': 'k1d8j', 'street': '100 Main st', 'city': 'Richmond', 'state': 'VA', 'candidates': 2, })
And multiple detailed lookups:
client.street_addresses([ { 'input_id': 'k1d8j', 'street': '100 Main st', 'city': 'Richmond', 'state': 'VA', 'candidates': 2, }, { 'input_id': 'z29ir', 'street': '400 Main st', 'city': 'Richmond', 'state': 'VA', 'candidates': 2, } ])
Return data
Just as important as a clean interface for working with the API is a helpful way of working with the returned data.
Returned data is presented as either a single SmartyAddress or a SmartyAddresses collection. Each is based on builtin types so that you always have access to the underlying data exactly as it was returned, but with added convenience methods.
Address geolocation
Where is it?:
>>> address = client.street_address("100 Main St Richmond, VA") >>> address.location (37.5436,-77.4453)
Accuracy is subject to address inputs and available data.
Address verification
Is this a deliverable address?:
>>> address.confirmed True
The value here does not necessarily mean this is an exact mail address (e.g. with apartment number). The SmartyStreets API will return a code indicating the complete DPV status.
Multiple addresses: input ID lookup
You can look up an address by the input_id parameter (provided you include one in the request):
>>> addresses = client.street_address([{'input_id': '123', 'street': ...}]) >>> addresses.get('123') {'input_id': '123', 'street': ... }
The get method is used because the SmartyAddresses object’s default lookup is against the list index.
Zipcode lookup
TODO
Response errors
The following documented response codes raise specific exceptions based on a SmaryStreetsError class.
400 Bad input. Required fields missing from input or are malformed.
401 Unauthorized. Addressuthentication failure; invalid credentials.
402 Payment required. No Addressuthenticationctive subscription found.
500 Internal server error. General service foundailure; retry request.
History
1.1.0 (2021-09-26)
Replace requests with httpx for transport
1.0.0 (2021-09-24)
BREAKING!!! Remove Python 2 support and remove grequests based AsyncClient
SmartyStreets.py is now tested against Python 3.7, 3.8, and 3.9
0.4.0 (2016-03-25)
Add optional timeout value for client (pmkane!)
0.3.0 (2016-03-10)
Ensure keep-alive is used for client connections (pmkane!)
Testing updates (pmkane!)
0.2.4 (2015-03-15)
Adds strict JSON serialization to async client as well
0.2.3 (2015-03-15)
Bugfix in logging suppression header
0.2.2 (2015-01-29)
Adds strict JSON serialization to ensure all-but-specified fields are serialized into strings.
0.2.1 (2014-11-17)
Bugfix in plain string address input handling
0.2.0 (2014-10-23)
Added experimental async client
0.1.0 (2014-10-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
Built Distribution
File details
Details for the file smartystreets.py-1.1.0.tar.gz
.
File metadata
- Download URL: smartystreets.py-1.1.0.tar.gz
- Upload date:
- Size: 20.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1744c1ad281efe8b76076d25aeff8941d6cd2a7d0260f0c94c4cb8d99d647a5b |
|
MD5 | e57cffe3d2914976a5a86979255cd9ef |
|
BLAKE2b-256 | db0cf69b4ce6d677c9d6149fb6e4cb7319b9951cd44fab17b7418e1899b33b0c |
File details
Details for the file smartystreets.py-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: smartystreets.py-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7e670fa111d813b1c29ec483dfaf794accd1d9f84e3cc3e4509cc203004069d |
|
MD5 | 248430efd1d0d38c124e20a231121e8d |
|
BLAKE2b-256 | 2c407f75422c36e1959e3ffc3937c359db86493220a37ce25b206a7c35b4352f |