Python bindings for the Boxcars Rocket League replay parser.
Only tested on linux. You have to compile it yourself if you are using Windows.
pip install boxcars-py
from boxcars_py import parse_replay
with open("your_replay.replay", "rb") as f:
buf = f.read()
f.close()
replay = parse_replay(buf)
# Use the parsed replay here
Requirements
- Rust.
- poetry
# Install dependencies
poetry install
# Build
make