{"id":18390753,"url":"https://github.com/eifinger/here_routing","last_synced_at":"2025-10-03T18:59:08.102Z","repository":{"id":45334747,"uuid":"513523461","full_name":"eifinger/here_routing","owner":"eifinger","description":"Asynchronous Python client for the HERE Routing V8 API","archived":false,"fork":false,"pushed_at":"2025-06-20T09:39:40.000Z","size":311,"stargazers_count":2,"open_issues_count":5,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-09-20T09:39:46.735Z","etag":null,"topics":["aiohttp","asyncio","here","here-maps-api","heremaps","python","python3","routing"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eifinger.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-07-13T13:01:55.000Z","updated_at":"2025-07-07T19:45:54.000Z","dependencies_parsed_at":"2023-01-27T23:30:31.991Z","dependency_job_id":"dbcf9f98-a38a-4b17-b078-3e3497a893f2","html_url":"https://github.com/eifinger/here_routing","commit_stats":{"total_commits":41,"total_committers":4,"mean_commits":10.25,"dds":0.4390243902439024,"last_synced_commit":"64b5ded38b8302bd0750af4ed9226a44b917fbf4"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/eifinger/here_routing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eifinger%2Fhere_routing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eifinger%2Fhere_routing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eifinger%2Fhere_routing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eifinger%2Fhere_routing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eifinger","download_url":"https://codeload.github.com/eifinger/here_routing/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eifinger%2Fhere_routing/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278212139,"owners_count":25949045,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-03T02:00:06.070Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aiohttp","asyncio","here","here-maps-api","heremaps","python","python3","routing"],"created_at":"2024-11-06T01:49:04.568Z","updated_at":"2025-10-03T18:59:08.084Z","avatar_url":"https://github.com/eifinger.png","language":"Python","readme":"# here_routing\n\nAsynchronous Python client for the HERE Routing V8 API\n\n[![GitHub Actions](https://github.com/eifinger/here_routing/workflows/CI/badge.svg)](https://github.com/eifinger/here_routing/actions?workflow=CI)\n[![PyPi](https://img.shields.io/pypi/v/here_routing.svg)](https://pypi.python.org/pypi/here_routing)\n[![License](https://img.shields.io/pypi/l/here_routing.svg)](https://github.com/eifinger/here_routing/blob/master/LICENSE)\n[![codecov](https://codecov.io/gh/eifinger/here_routing/branch/master/graph/badge.svg)](https://codecov.io/gh/eifinger/here_routing)\n[![Downloads](https://pepy.tech/badge/here_routing)](https://pepy.tech/project/here_routing)\n\n## Installation\n\n```bash\nuv add here_routing\n```\n\n## Usage\n\n```python\nimport asyncio\n\nfrom here_routing import HERERoutingApi, Place, Return, TransportMode\n\nAPI_KEY = \"\u003cYOUR_API_KEY\u003e\"\n\n\nasync def main() -\u003e None:\n    \"\"\"Show example how to get duration of your route.\"\"\"\n    async with HERERoutingApi(api_key=API_KEY) as here_routing:\n        response = await here_routing.route(\n            transport_mode=TransportMode.CAR,\n            origin=Place(latitude=50.12778680095556, longitude=8.582081794738771),\n            destination=Place(latitude=50.060940891421765, longitude=8.336477279663088),\n            return_values=[Return.SUMMARY],\n        )\n        print(\n            f\"Duration is: {response['routes'][0]['sections'][0]['summary']['duration']}\"\n        )\n\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feifinger%2Fhere_routing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feifinger%2Fhere_routing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feifinger%2Fhere_routing/lists"}