Skip to content

SprocketBot/boxcars-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Boxcars-py

Python bindings for the Boxcars Rocket League replay parser. This is a fork of SaltieRL's package which sadly seems to no longer be maintained.

Installation

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

pip install sprocket-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

  • Rust.
  • maturin
maturin develop
maturin publish

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages