Metadata-Version: 2.1
Name: f1-23-telemetry
Version: 0.1.4
Summary: 
License: MIT
Author: Chris Hannam
Author-email: ch@chrishannam.co.uk
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

# F1 23 Telemetry Supporting v29x3
Currently supporting the `v29x3: Update game mode IDs in the appendix` version from
the F1 23 UDP specification which is available [here](https://answers.ea.com/t5/General-Discussion/F1-23-UDP-Specification/td-p/12632888)

# Installing

```commandline
pip install f1-23-telemetry
```

# Running
```commandline
telemetry-f1-23-listener
```

# Usage

```python
from f1_23_telemetry.listener import TelemetryListener

listener = TelemetryListener(port=20777, host='localhost')
packet = listener.get()
```

# Releasing
```commandline
pip install --upgrade build twine
python -m build
python3 -m twine upload f1-23-telemetry dist/
```

