https://github.com/p403n1x87/f1-packets
Python library for the official F1 game UDP telemetry data
https://github.com/p403n1x87/f1-packets
Last synced: 6 months ago
JSON representation
Python library for the official F1 game UDP telemetry data
- Host: GitHub
- URL: https://github.com/p403n1x87/f1-packets
- Owner: P403n1x87
- License: mit
- Created: 2022-07-10T09:41:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-12T20:32:33.000Z (over 1 year ago)
- Last Synced: 2025-04-13T02:17:02.431Z (6 months ago)
- Language: C
- Size: 693 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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).