usps-api
usps-api copied to clipboard
Python Wrapper for the USPS API :truck: :package:
From https://www.usps.com/business/web-tools-apis/address-information-api.htm: > The Verify API supports up to five lookups per transaction It looks to me as though `validate_address` should accept a list of Address (or perhaps) be a...
I added the ZipCodeLookup option to api. This required all Address parameters option. Will only add Xml tags if data is entered. Then Added ZipCodeLookup request.
i.e. for unit numbers prefixed with a pound sign Input such as "1234 Main st. #2" will now work Fixes https://github.com/Brobin/usps-api/issues/17
The following address check "**1400 Carpentier St Apt 326, San Leandro, CA 94577-3630**" works fine but I get an error when "**Apt**" is replaced with a '**#**' sign. address =...
This optional parameter will allow us to get additional information on AddressValidate response. This is helpful if we want to know if an address is commercial or not.
The usps has a revision 1 for the address validation api in addition to the tracking api. The code should either allow us to set a revision to use for...
**Thanks for an awesome package!** Since the USPS API can handle up to 35 tracking IDs per request, i'm wondering if there's a good way to pass a list with...