Asynchronous Python client for the HERE Routing V8 API
Project description
here_routing
Asynchronous Python client for the HERE Routing V8 API
Installation
pip install here_routing
Usage
import asyncio
from here_routing import HERERoutingApi, Place, Return, TransportMode
API_KEY = "<YOUR_API_KEY>"
async def main() -> None:
"""Show example how to get duration of your route."""
async with HERERoutingApi(api_key=API_KEY) as here_routing:
response = await here_routing.route(
transport_mode=TransportMode.CAR,
origin=Place(latitude=50.12778680095556, longitude=8.582081794738771),
destination=Place(latitude=50.060940891421765, longitude=8.336477279663088),
return_values=[Return.SUMMARY],
)
print(
f"Duration is: {response['routes'][0]['sections'][0]['summary']['duration']}"
)
if __name__ == "__main__":
asyncio.run(main())
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
here_routing-1.0.0.tar.gz
(6.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file here_routing-1.0.0.tar.gz.
File metadata
- Download URL: here_routing-1.0.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/37.3 requests/2.28.2 requests-toolbelt/0.10.1 urllib3/1.26.14 tqdm/4.65.0 importlib-metadata/6.0.0 keyring/23.13.1 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6629a8001f403c5ceefa554fc755fce713ae703c018b5d68480ac914741adf16
|
|
| MD5 |
531d8da08e9e1ba2c3b573ebc9deb3b5
|
|
| BLAKE2b-256 |
5b329d5d0475421389fa155c304a9212665964f41d600063580648d651f055a5
|
File details
Details for the file here_routing-1.0.0-py3-none-any.whl.
File metadata
- Download URL: here_routing-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/37.3 requests/2.28.2 requests-toolbelt/0.10.1 urllib3/1.26.14 tqdm/4.65.0 importlib-metadata/6.0.0 keyring/23.13.1 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31a149d1fc0dc1aeb1f727c82083adfce706fd6fee45e4300e4cbbf459beea3d
|
|
| MD5 |
e2c1992d229b4094a8086473f990de8b
|
|
| BLAKE2b-256 |
828fb1c0cf3fd21edf6d635c0992816cf3cee7d6ef06191908b794708326315a
|