Metadata-Version: 2.4
Name: f1-packets
Version: 2025.1.0
Summary: Python library for the official F1 game UDP telemetry data
Project-URL: repository, https://github.com/P403n1x87/f1-packets
Project-URL: issues, https://github.com/P403n1x87/f1-packets/issues
Author-email: "Gabriele N. Tornetta" <phoenix1987@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# F1 Packets

Python library for the official F1 game UDP telemetry data

## Packet spec generation

To generate the spec from the official document, follow these steps. Make sure
that `cog` is installed (`pipx install cogapp`) before continuing.

- Copy-paste the documentation into `data/spec.h`
- Comment-out (or delete) anything that is not part of the actual data spec
- Run `cog -Pr .\f1\packets.py` from the root folder.

## Credits

Most of the code is based on
[Telemetry-F1-2021](https://github.com/chrishannam/Telemetry-F1-2021).