8000 GitHub - dster2/boxcars-py: Python wrapper for boxcars, a Rust Rocket League replay parser
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

dster2/boxcars-py

 
 

Repository files navigation

Boxcars-py

Python bindings for the Boxcars Rocket League replay parser.

Installation

Only tested on linux. You have to compile it yourself if you are using Windows.

pip install boxcars-py

Usage

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

Building from source

Requirements

# Install dependencies
poetry install
# Build
make

About

Python wrapper for boxcars, a Rust Rocket League replay parser

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 40.7%
  • Python 40.3%
  • Makefile 19.0%
0