Skip to content

Commit

Permalink
Merge pull request #51 from smartystreets/eric/fix-build-process
Browse files Browse the repository at this point in the history
Removed references to the US Autocomplete Basic API
  • Loading branch information
RyanLCox1 authored May 24, 2024
2 parents 3e4d004 + 4bc9da0 commit 5703c64
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
'smartystreets_python_sdk.us_street',
'smartystreets_python_sdk.us_zipcode',
'smartystreets_python_sdk.us_extract',
'smartystreets_python_sdk.us_autocomplete',
'smartystreets_python_sdk.international_street',
'smartystreets_python_sdk.us_reverse_geo',
'smartystreets_python_sdk.us_autocomplete_pro',
Expand Down
1 change: 0 additions & 1 deletion smartystreets_python_sdk/client_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def __init__(self, signer):
self.licenses = []
self.INTERNATIONAL_STREET_API_URL = "https://international-street.api.smarty.com/verify"
self.INTERNATIONAL_AUTOCOMPLETE_API_URL = "https://international-autocomplete.api.smarty.com/v2/lookup"
self.US_AUTOCOMPLETE_API_URL = "https://us-autocomplete.api.smarty.com/suggest"
self.US_AUTOCOMPLETE_PRO_API_URL = "https://us-autocomplete-pro.api.smarty.com/lookup"
self.US_EXTRACT_API_URL = "https://us-extract.api.smarty.com"
self.US_STREET_API_URL = "https://us-street.api.smarty.com/street-address"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Client:
def __init__(self, sender, serializer):
"""
It is recommended to instantiate this class using ClientBuilder.build_us_autocomplete_api_client()
It is recommended to instantiate this class using ClientBuilder.build_international_autocomplete_api_client()
"""
self.sender = sender
self.serializer = serializer
Expand Down

0 comments on commit 5703c64

Please sign in to comment.