def __isValidDeliveryStreet(self, deliveryStreet, deliveryZip): '''Performs a validity check of a given street address and zip code pair. Leverages the SmartyStreets address verification service. Args: self: Instance reference deliveryStreet: String containing the street address deliveryZip: String containing the zip code Returns: Boolean indicating whether the street address is valid Raises: None ''' if deliveryStreet and deliveryZip: credentials = StaticCredentials(AUTH_ID, AUTH_TOKEN) client = ClientBuilder(credentials).build_us_street_api_client() lookup = Lookup() lookup.street = deliveryStreet lookup.zipcode = deliveryZip try: client.send_lookup(lookup) except exceptions.SmartyException: return False if lookup.result: return True else: return False else: return False
def run(): # auth_id = "Your SmartyStreets Auth ID here" # auth_token = "Your SmartyStreets Auth Token here" # We recommend storing your secret keys in environment variables instead---it's safer! auth_id = os.environ['SMARTY_AUTH_ID'] auth_token = os.environ['SMARTY_AUTH_TOKEN'] credentials = StaticCredentials(auth_id, auth_token) # The appropriate license values to be used for you subscriptions # can be found on the Subscriptions page of the account dashboard. # https://www.smartystreets.com/docs/cloud/licensing client = ClientBuilder(credentials).with_licenses( ["us-core-cloud"]).build_us_street_api_client() # client = ClientBuilder(credentials).with_custom_header({'User-Agent': 'smartystreets ([email protected])', 'Content-Type': 'application/json'}).build_us_street_api_client() # client = ClientBuilder(credentials).with_proxy('localhost:8080', 'user', 'password').build_us_street_api_client() # Uncomment the line above to try it with a proxy instead # Documentation for input fields can be found at: # https://smartystreets.com/docs/us-street-api#input-fields lookup = StreetLookup() lookup.input_id = "24601" # Optional ID from your system lookup.addressee = "John Doe" lookup.street = "1600 Amphitheatre Pkwy" lookup.street2 = "closet under the stairs" lookup.secondary = "APT 2" lookup.urbanization = "" # Only applies to Puerto Rico addresses lookup.city = "Mountain View" lookup.state = "CA" lookup.zipcode = "94043" lookup.candidates = 3 lookup.match = "invalid" # "invalid" is the most permissive match, # this will always return at least one result even if the address is invalid. # Refer to the documentation for additional Match Strategy options. try: client.send_lookup(lookup) except exceptions.SmartyException as err: print(err) return result = lookup.result if not result: print("No candidates. This means the address is not valid.") return first_candidate = result[0] print("There is at least one candidate.") print("If the match parameter is set to STRICT, the address is valid.") print( "Otherwise, check the Analysis output fields to see if the address is valid.\n" ) print("ZIP Code: " + first_candidate.components.zipcode) print("County: " + first_candidate.metadata.county_name) print("Latitude: {}".format(first_candidate.metadata.latitude)) print("Longitude: {}".format(first_candidate.metadata.longitude))
def test_single_lookup_values_correctly_assigned_to_parameters(self): sender = RequestCapturingSender() serializer = FakeDeserializer({}) client = Client(sender, serializer) lookup = Lookup() lookup.street = '0' lookup.street2 = '1' lookup.secondary = '2' lookup.city = '3' lookup.state = '4' lookup.zipcode = '5' lookup.lastline = '6' lookup.addressee = '7' lookup.urbanization = '8' lookup.match = match_type.INVALID lookup.candidates = '9' client.send_lookup(lookup) self.assertEqual('0', sender.request.parameters['street']) self.assertEqual('1', sender.request.parameters['street2']) self.assertEqual('2', sender.request.parameters['secondary']) self.assertEqual('3', sender.request.parameters['city']) self.assertEqual('4', sender.request.parameters['state']) self.assertEqual('5', sender.request.parameters['zipcode']) self.assertEqual('6', sender.request.parameters['lastline']) self.assertEqual('7', sender.request.parameters['addressee']) self.assertEqual('8', sender.request.parameters['urbanization']) self.assertEqual(match_type.INVALID, sender.request.parameters['match']) self.assertEqual('9', sender.request.parameters['candidates'])
def test_address(address): auth_id = "9484953c-80e6-c55d-c6fc-317df18233eb" auth_token = "GdjMKksY6pLKQFoLMiWx" credentials = StaticCredentials(auth_id, auth_token) client = ClientBuilder(credentials).build_us_street_api_client() lookup = Lookup() lookup.street = address['street'] lookup.city = address['city'] lookup.state = address['state'] lookup.zipcode = address['zipcode'] lookup.match = "Invalid" # "invalid" is the most permissive match try: client.send_lookup(lookup) except exceptions.SmartyException as err: print(err) return result = lookup.result if not result: print("No candidates. This means the address is not valid.") return False first_candidate = result[0] print("Address is valid. (There is at least one candidate)\n") print("ZIP Code: " + first_candidate.components.zipcode) print("County: " + first_candidate.metadata.county_name) print("Latitude: {}".format(first_candidate.metadata.latitude)) print("Longitude: {}".format(first_candidate.metadata.longitude)) return True
def verifyaddress(): body = json.loads(request.data.decode()) credentials = StaticCredentials(AUTH_ID, AUTH_TOKEN) client = ClientBuilder(credentials).build_us_street_api_client() lookup = StreetLookup() # lookup.addressee = body.get('address') lookup.street = body['street'] # lookup.secondary = body.get('secondary') lookup.city = body['city'] lookup.state = body['state'] lookup.zipcode = body['zipcode'] lookup.candidates = 1 try: client.send_lookup(lookup) except Exception.SmartyException as err: print(err) return Response([], status=500) results = lookup.result if not results: return Response(json.dumps(False, default=str), status=200, content_type="text/json") first_candidate = results[0] # city_name, state_abbreviation, zipcode if not first_candidate or (first_candidate.delivery_line_1 != body['street'] or first_candidate.components.city_name != body['city'] or first_candidate.components.state_abbreviation != body['state'] or first_candidate.components.zipcode != body['zipcode']): print("No candidates. This means the address is not valid.") return Response(json.dumps(False, default=str), status=200, content_type="text/json") return Response(json.dumps(True, default=str), status=200, content_type="text/json")
def zip9_lookup_by_components(address): lookup = Lookup() street_number = address.get("street_number") street = address.get("street") lookup.street = f"{street_number} {street}" lookup.city = address.get("city") lookup.state = address.get("state") lookup.zipcode = address.get("zip5") return zip9_lookup(lookup)
def run(addressee,street,city,state,zipcode): auth_id = "9a7b8041-9ac4-7e15-75b0-780771fc3d92" auth_token = "xMvDBs26P88X0Esk8q5D" # We recommend storing your secret keys in environment variables instead---it's safer! # auth_id = os.environ['SMARTY_AUTH_ID'] # auth_token = os.environ['SMARTY_AUTH_TOKEN'] credentials = StaticCredentials(auth_id, auth_token) client = ClientBuilder(credentials).build_us_street_api_client() # client = ClientBuilder(credentials).with_custom_header({'User-Agent': 'smartystreets ([email protected])', 'Content-Type': 'application/json'}).build_us_street_api_client() # client = ClientBuilder(credentials).with_proxy('localhost:8080', 'user', 'password').build_us_street_api_client() # Uncomment the line above to try it with a proxy instead # Documentation for input fields can be found at: # https://smartystreets.com/docs/us-street-api#input-fields lookup = StreetLookup() # lookup.input_id = "" # Optional ID from your system lookup.addressee = addressee lookup.street = street lookup.street2 = "" # lookup.secondary = secondary # lookup.urbanization = "" # Only applies to Puerto Rico addresses lookup.city = city lookup.state = state lookup.zipcode = zipcode # # lookup.candidates = 3 lookup.match = "Invalid" # "invalid" is the most permissive match, # this will always return at least one result even if the address is invalid. # Refer to the documentation for additional Match Strategy options. try: client.send_lookup(lookup) except exceptions.SmartyException as err: print(err) return result = lookup.result # print(result[0]) if not result: print("No candidates. This means the address is not valid.") return False else: print("correct address") return True
def run(): auth_id = "Your SmartyStreets Auth ID here" auth_token = "Your SmartyStreets Auth Token here" # We recommend storing your secret keys in environment variables instead---it's safer! # auth_id = os.environ['SMARTY_AUTH_ID'] # auth_token = os.environ['SMARTY_AUTH_TOKEN'] credentials = StaticCredentials(auth_id, auth_token) client = ClientBuilder(credentials).build_us_street_api_client() # client = ClientBuilder(credentials).with_proxy('localhost:8080', 'user', 'password').build_us_street_api_client() # Uncomment the line above to try it with a proxy instead # Documentation for input fields can be found at: # https://smartystreets.com/docs/us-street-api#input-fields lookup = Lookup() lookup.input_id = "24601" # Optional ID from your system lookup.addressee = "John Doe" lookup.street = "1600 Amphitheatre Pkwy" lookup.street2 = "closet under the stairs" lookup.secondary = "APT 2" lookup.urbanization = "" # Only applies to Puerto Rico addresses lookup.city = "Mountain View" lookup.state = "CA" lookup.zipcode = "94043" lookup.candidates = 3 lookup.match = "Invalid" # "invalid" is the most permissive match try: client.send_lookup(lookup) except exceptions.SmartyException as err: print(err) return result = lookup.result if not result: print("No candidates. This means the address is not valid.") return first_candidate = result[0] print("Address is valid. (There is at least one candidate)\n") print("ZIP Code: " + first_candidate.components.zipcode) print("County: " + first_candidate.metadata.county_name) print("Latitude: {}".format(first_candidate.metadata.latitude)) print("Longitude: {}".format(first_candidate.metadata.longitude))
def smarty_api(flat_address_list: List[str]) -> Optional[SmartyStreetResult]: """ Run addresses through SmartyStreets API, returning a `SmartyStreetsResult` object with all the information we get from the API. If any errors occur, we'll return None. Args: flat_address_list: a flat list of addresses that will be read as follows: _ : an unused arguement for ID street: The street address, e.g., 250 OCONNOR ST state: The state (probably RI) zipcode: The zipcode to look up smartystreets_auth_id: Your SmartyStreets auth_id smartystreets_auth_token: Your SmartyStreets auth_token Returns: The result if we find one, else None """ # Authenticate to SmartyStreets API [ _, street, state, zipcode, smartystreets_auth_id, smartystreets_auth_token ] = flat_address_list credentials = StaticCredentials(smartystreets_auth_id, smartystreets_auth_token) client = ClientBuilder(credentials).build_us_street_api_client() # Lookup the Address with inputs by indexing from input `row` lookup = StreetLookup() lookup.street = street lookup.state = state lookup.zipcode = zipcode lookup.candidates = 1 lookup.match = "invalid" # "invalid" always returns at least one match try: client.send_lookup(lookup) except exceptions.SmartyException: return None res = lookup.result if not res: # if we have exceptions, just return the inputs to retry later return None result = res[0] return SmartyStreetResult.from_metadata(result)
def t1(): lookup = StreetLookup() # lookup.input_id = "24601" # Optional ID from your system lookup.street = "520 W. 120th Street" # lookup.street2 = "closet under the stairs" #lookup.secondary = "APT 2" #lookup.urbanization = "" # Only applies to Puerto Rico addresses lookup.city = "New York" lookup.state = "NY" lookup.zipcode = "10027" lookup.candidates = 3 # lookup.match = "invalid" # "invalid" is the most permissive match, # this will always return at least one result even if the address is invalid. # Refer to the documentation for additional Match Strategy options. sm_adaptor = SmartyStreetsAdaptor() sm_adaptor.do_lookup(lookup) j_result = sm_adaptor.to_json() print("T1 result = \n", json.dumps(j_result, indent=2, default=str))
def us_street_lookup(address: dict) -> Lookup: """ Creates and returns a SmartyStreets US Street API Lookup object for a given *address*. Raises a :class:`InvalidAddressMappingError` if a Lookup property from the SmartyStreets geocoding API is not present in the given *address* data. """ lookup = Lookup() try: lookup.street = address['street'] lookup.secondary = address['secondary'] lookup.city = address['city'] lookup.state = address['state'] lookup.zipcode = address['zipcode'] except KeyError as e: raise InvalidAddressMappingError(e) lookup.candidates = 1 lookup.match = "Invalid" # Most permissive return lookup
def run(): auth_id = os.environ['SMARTY_AUTH_ID'] # We recommend storing your keys in environment variables auth_token = os.environ['SMARTY_AUTH_TOKEN'] credentials = StaticCredentials(auth_id, auth_token) client = ClientBuilder(credentials).build_us_street_api_client() # client = ClientBuilder(credentials).with_proxy('localhost:8080', 'user', 'password').build_us_street_api_client() # Uncomment the line above to try it with a proxy instead lookup = Lookup() lookup.street = "40 West Park Place" lookup.city = "Morristown" lookup.state = "NJ" lookup.zipcode = "07960" try: client.send_lookup(lookup) except exceptions.SmartyException as err: print(err) return result = lookup.result if not result: print("No candidates. This means the address is not valid.") return #candidate = result[0] for candidate in result: print("Address is valid. (There is at least one candidate)\n") print("Delivery Line 1:" + candidate.delivery_line_1) print("ZIP Code: " + candidate.components.zipcode) print("County: " + candidate.metadata.county_name) print("Latitude: {}".format(candidate.metadata.latitude)) print("Longitude: {}".format(candidate.metadata.longitude))
def address_validation(): found = True # We recommend storing your secret keys in environment variables instead---it's safer! auth_id = os.environ['SMARTY_AUTH_ID'] auth_token = os.environ['SMARTY_AUTH_TOKEN'] session['shipping_fn'] = request.form['first_name'] session['shipping_ln'] = request.form['last_name'] input_address = { 'street': request.form['street1'] + ' ' + request.form['street2'], 'city': request.form['city'], 'state': request.form['state'], 'zip': request.form['zip_code'] } credentials = StaticCredentials(auth_id, auth_token) client = ClientBuilder(credentials).build_us_street_api_client() # client = ClientBuilder(credentials).with_custom_header({'User-Agent': 'smartystreets ([email protected])', 'Content-Type': 'application/json'}).build_us_street_api_client() # client = ClientBuilder(credentials).with_proxy('localhost:8080', 'user', 'password').build_us_street_api_client() # Uncomment the line above to try it with a proxy instead # Documentation for input fields can be found at: # https://smartystreets.com/docs/us-street-api#input-fields lookup = Lookup() #lookup.input_id = "24601" # Optional ID from your system lookup.addressee = request.form['first_name'] + ' ' + request.form[ 'last_name'] lookup.street = request.form['street1'] lookup.street2 = request.form['street2'] #lookup.secondary = "APT 2" lookup.urbanization = "" # Only applies to Puerto Rico addresses lookup.city = request.form['city'] lookup.state = request.form['state'] lookup.zipcode = request.form['zip_code'] lookup.candidates = 3 lookup.match = "Invalid" # "invalid" is the most permissive match try: client.send_lookup(lookup) except exceptions.SmartyException as err: print(err) return result = lookup.result if not result: found = False print("No candidates. This means the address is not valid.") flash('Address is not valid. Please re-enter shipping information.') return render_template('partials/address.html', found=found) #for output example fields here https://smartystreets.com/docs/cloud/us-street-api#http-response-status first_candidate = result[0] print("Address is valid. (There is at least one candidate)\n") suggested_address_line1 = first_candidate.delivery_line_1 suggested_address_line2 = first_candidate.components.city_name + ", " + first_candidate.components.state_abbreviation + " " + first_candidate.components.zipcode print(first_candidate.delivery_line_1) print(suggested_address_line1) print(first_candidate.components.city_name + ", " + first_candidate.components.state_abbreviation + " " + first_candidate.components.zipcode) return render_template('partials/address.html', found=found, suggested_address_line1=suggested_address_line1, suggested_address_line2=suggested_address_line2, input_address=input_address)
def run(): auth_id = context.get_context("auth_id") auth_token = context.get_context("auth_token") # We recommend storing your secret keys in environment variables instead---it's safer! # auth_id = os.environ['SMARTY_AUTH_ID'] # auth_token = os.environ['SMARTY_AUTH_TOKEN'] credentials = StaticCredentials(auth_id, auth_token) # The appropriate license values to be used for you subscriptions # can be found on the Subscriptions page of the account dashboard. # https://www.smartystreets.com/docs/cloud/licensing client = ClientBuilder(credentials).with_licenses(["us-standard-cloud"]).build_us_street_api_client() # client = ClientBuilder(credentials).with_custom_header({'User-Agent': 'smartystreets ([email protected])', 'Content-Type': 'application/json'}).build_us_street_api_client() # client = ClientBuilder(credentials).with_proxy('localhost:8080', 'user', 'password').build_us_street_api_client() # Uncomment the line above to try it with a proxy instead # Documentation for input fields can be found at: # https://smartystreets.com/docs/us-street-api#input-fields lookup = StreetLookup() lookup.input_id = "24601" # Optional ID from your system lookup.addressee = "John Doe" lookup.street = "1600 Amphitheatre Pkwy" lookup.street2 = "closet under the stairs" lookup.secondary = "APT 2" lookup.urbanization = "" # Only applies to Puerto Rico addresses lookup.city = "Mountain View" lookup.state = "CA" lookup.zipcode = "94043" lookup.candidates = 3 lookup.match = "invalid" # "invalid" is the most permissive match, # this will always return at least one result even if the address is invalid. # Refer to the documentation for additional Match Strategy options. try: client.send_lookup(lookup) except exceptions.SmartyException as err: print(err) return result = lookup.result if not result: print("No candidates. This means the address is not valid.") return first_candidate = result[0] print("Address is valid. (There is at least one candidate)\n") #print("Address = ", json.dumps(first_candidate.components)) print("ZIP Code: " + first_candidate.components.zipcode) print("County: " + first_candidate.metadata.county_name) print("Latitude: {}".format(first_candidate.metadata.latitude)) print("Longitude: {}".format(first_candidate.metadata.longitude)) # print("Precision: {}".format(first_candidate.metadata.precision)) # print("Residential: {}".format(first_candidate.metadata.rdi)) # print("Vacant: {}".format(first_candidate.analysis.dpv_vacant)) # Complete list of output fields is available here: https://smartystreets.com/docs/cloud/us-street-api#http-response-output sm = SmartyStreetsAdaptor(result) res = sm.to_json() print("All fields = \n", json.dumps(res, indent=2, default=str))