Metadata-Version: 2.1
Name: f1-api-wrapper
Version: 0.0.3
Summary: An API wrapper for Ergast Formula 1 API
Home-page: https://github.com/lunae/f1
Author: Manny Luna
Author-email: lunae@github.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests (==2.23.0)

# F1 API Wrapper

An API wrapper for Formula 1 racing data based on [Ergast Developer API](https://ergast.com/mrd/)

# Install

`pip install f1-api-wrapper`

# Usage

```python
from f1.schedule import get_current_schedule

schedule = get_current_schedule()

races = schedule.races
```

# Features

* Retrieve current season schedule


