https://github.com/rstular/address-lookup
Lookup an address using an online provider.
https://github.com/rstular/address-lookup
address address-validation here heremaps maps-api
Last synced: 3 months ago
JSON representation
Lookup an address using an online provider.
- Host: GitHub
- URL: https://github.com/rstular/address-lookup
- Owner: rstular
- License: mit
- Created: 2022-01-11T11:12:03.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-31T01:35:29.000Z (over 2 years ago)
- Last Synced: 2025-10-27T02:15:16.070Z (6 months ago)
- Topics: address, address-validation, here, heremaps, maps-api
- Language: Python
- Homepage: https://address-lookup.readthedocs.io/en/latest/
- Size: 2.78 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
==============
Address Lookup
==============
|docs| |pypi-version|
This package allows you to lookup partial addresses using various online services, returning the address in a standardized form.
Supported services
------------------
- HERE API (API key required)
Soon-to-be-supported services
*****************************
- Google Maps API
Obtaining an API key
--------------------
HERE API key
************
Create a HERE developer account `here `_. Create a new project, and obtain a REST token. You can use this token with the Address Lookup library.
Usage
-----
HERE API usage
**************
.. code-block:: python
from address_lookup.clients import AddressLookupHereClient
API_KEY = "YOUR_API_KEY"
here_client = AddressLookupHereClient(API_KEY)
result = here_client.lookup_address("White House, USA")
print(result.asdict())
.. |docs| image:: https://readthedocs.org/projects/docs/badge/?version=latest&style=flat
:alt: Documentation Status
:scale: 100%
:target: https://address-lookup.readthedocs.io/en/latest/
.. |pypi-version| image:: https://img.shields.io/pypi/v/address-lookup
:alt: Documentation Status
:scale: 100%
:target: https://pypi.org/project/address-lookup/