Metadata-Version: 2.4
Name: garage61api
Version: 0.0.2
Summary: Garage-61-Api is a simple Python wrapper around the Garage61 API.
Project-URL: Homepage, https://github.com/KuzmaLesnoy/garage61api
Project-URL: Issues, https://github.com/KuzmaLesnoy/garage61api/issues
Author-email: Kuzma Lesnoy <kuzmalesnoy@tieler.top>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Garage61Api

Simple Python wrapper around the Garage61 API.

# Install

`pip install garage61api`

# Usage

```
from garage61api.client import Garage61Client

g61 = Garage61Client(token="YOUR_ACCESS_TOKEN")
print(g61.me())
```

# Endpoints
### General information
- **.me** - Information about the currently authenticated user.
- **.me_accounts** - Get linked accounts for the current user.
- **.me_statistics** - Get personal driving statistics.
- **.teams** - Joined teams or information about a specific team and statistics.
### Content
- **.car_groups** - Available car groups.
- **.cars** - Available cars.
- **.platforms** - Available platforms.
- **.tracks** - Available tracks.
### Driving data
- **.laps** - Find laps and lap records and information about a specific lap.
- **.lap_csv** - Export the telemetry for a lap as a CSV file.

# Documentation

[Garage61 API](https://de.garage61.net/developer)

[GitHub](https://github.com/KuzmaLesnoy/garage61api)

Docstrings