Metadata-Version: 2.4
Name: uboxcars_py
Version: 15.0.0
Author: Justus K <justus.k@protonmail.com>, Matthew Mage <sciguymjm@gmail.com>
Author-email: Justus K <justus.k@protonmail.com>, Matthew Mage <sciguymjm@gmail.com>
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# uboxcars_py

Python bindings for the [uboxcars](https://github.com/Robodozer/uboxcars) Rocket League replay parser.

## Installation

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

```
pip install uboxcars_py
```

## Usage

```py
from uboxcars_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.
  - [poetry](https://pypi.org/project/poetry/)

```
# Install dependencies
poetry install
# Build
make
```

