Metadata-Version: 2.4
Name: tomtom-apis
Version: 0.0.1a4
Summary: Asynchronous Python client for the TomTom APIs
Project-URL: Documentation, https://github.com/golles/tomtom-apis-python
Project-URL: Homepage, https://github.com/golles/tomtom-apis-python
Project-URL: Repository, https://github.com/golles/tomtom-apis-python
Project-URL: Issues, https://github.com/golles/tomtom-apis-python/issues
Author-email: Sander Gols <developer@golles.nl>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: ==3.13.3
Requires-Dist: aiohttp==3.11.18
Requires-Dist: geojson==3.2.0
Requires-Dist: mashumaro==3.15
Requires-Dist: orjson==3.10.18
Description-Content-Type: text/markdown

# TomTom APIs Python

[![PyPI version][pypi_badge]][pypi_link]
[![License][license_badge]][license_link]
[![Codecov][codecov_badge]][codecov_link]
[![Sonar quality gate][sonar_badge]][sonar_link]
[![GitHub repo stars][stars_badge]][stars_link]
[![Buy me a coffee][buymecoffee_badge]][buymecoffee_link]

An asynchronous Python client for accessing TomTom APIs with full type support.

Easily integrate TomTom's services into your Python application using this client, and enjoy enhanced type safety and autocomplete support.

For more details about the APIs, visit the [TomTom Developer Portal](https://developer.tomtom.com), where you can sign up and get your API key.

## Supported APIs

The following section outlines the APIs currently supported by this client.

### Automotive APIs

| API                      | Notes           |
| ------------------------ | --------------- |
| Autostream               | Not implemented |
| Fuel Prices API          |                 |
| Parking Availability API |                 |

### Maps API

| API             | Notes                                                                     |
| --------------- | ------------------------------------------------------------------------- |
| Map Display API | `WMS`, `WMTS`, `Map Styles` and `Map Styles v2` have not been implemented |

### Places APIs

| API                   | Notes |
| --------------------- | ----- |
| Batch Search API      |       |
| EV Search API         |       |
| Geocoding API         |       |
| Premium Geocoding API |       |
| Reverse Geocoding API |       |
| Search API            |       |

### Routing APIs

| API                          | Notes           |
| ---------------------------- | --------------- |
| Long Distance EV Routing API |                 |
| Matrix Routing v2 API        | Not implemented |
| Routing API                  |                 |
| Waypoint Optimization API    |                 |

### Tracking & Logistics APIs

| API                  | Notes           |
| -------------------- | --------------- |
| Geofencing API       | Not implemented |
| Location History API | Not implemented |
| Notifications API    | Not implemented |
| Snap to Roads API    | Not implemented |

### Traffic APIs

| API                      | Notes                                                      |
| ------------------------ | ---------------------------------------------------------- |
| Intermediate Traffic API | Not implemented                                            |
| Junction Analytics API   | Not implemented                                            |
| O/D Analytics API        | Not implemented                                            |
| Route Monitoring API     | Not implemented                                            |
| Traffic API              | `Map Styles` and `Map Styles v2` have not been implemented |
| Traffic Stats API        | Not implemented                                            |

## Installation

You can install this package via your favorite package manager. For example, using pip:

```sh
pip install tomtom-apis
```

## Examples

You can find usage examples in the [examples directory](examples).

## Contributing

Your contributions are welcome! Please familiarize yourself with the [contribution guidelines](CONTRIBUTING.md). This document also helps you set up your development environment.

---

Thank you for your interest in the TomTom API Python client! If you have any questions or need further assistance, feel free to open an issue or submit a pull request.

[pypi_link]: https://pypi.org/project/tomtom-apis/
[pypi_badge]: https://img.shields.io/pypi/v/tomtom-apis?style=for-the-badge
[license_link]: https://github.com/golles/tomtom-apis-python/blob/main/LICENSE
[license_badge]: https://img.shields.io/github/license/golles/tomtom-apis-python.svg?style=for-the-badge
[codecov_link]: https://app.codecov.io/gh/golles/tomtom-apis-python
[codecov_badge]: https://img.shields.io/codecov/c/github/golles/tomtom-apis-python?style=for-the-badge
[sonar_link]: https://sonarcloud.io/project/overview?id=golles_tomtom-apis-python
[sonar_badge]: https://img.shields.io/sonar/quality_gate/golles_tomtom-apis-python?server=https%3A%2F%2Fsonarcloud.io&style=for-the-badge
[stars_link]: https://github.com/golles/tomtom-apis-python/stargazers
[stars_badge]: https://img.shields.io/github/stars/golles/tomtom-apis-python?style=for-the-badge
[buymecoffee_link]: https://www.buymeacoffee.com/golles
[buymecoffee_badge]: https://img.shields.io/badge/buy%20me%20a%20coffee-donate-yellow.svg?style=for-the-badge
