Metadata-Version: 2.1
Name: rockalyzer
Version: 0.0.2
Summary: Rocket League Analyzer
Home-page: https://github.com/eliastheis/rockalyzer
Author: Elias Theis
Author-email: mail@eliastheis.de
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Rocket League Boxcars Replayer
Here will be the documentation

## Installation
Run the following to install:
```python
pip install rockalyzer
```

## Usage
```python
from rockalyzer import Replayer

# load replay as json file and set render mode
replayer = Replayer('path/to/replay.json', render=True)

# replay file
replayer.replay()

# get stats
stats = replayer.get_stats()
```
