An open API service indexing awesome lists of open source software.

https://github.com/manucabral/rocketleaguelog

A simple Rocket League Log parser.
https://github.com/manucabral/rocketleaguelog

python python-package rocket-league rocketleague

Last synced: 2 months ago
JSON representation

A simple Rocket League Log parser.

Awesome Lists containing this project

README

        

# rocketleaguelog
A simple and fast Rocket League Log parser.

It can be used to get info about the current map or player without using external mods.

```py
>>> import rocketleaguelog
>>> session = rocketleaguelog.Session()
>>> session.platform()
'Steam'
>>> session.version()
'230620.44144.425548'
>>> session.maps()
[Map(name=MENU), Map(name=Stadium_Foggy_P), Map(name=TrainStation_P), Map(name=MENU)]
>>> session.player()
Player(name=NightNight29)
>>> session.game_running()
False
```