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.
- Host: GitHub
- URL: https://github.com/manucabral/rocketleaguelog
- Owner: manucabral
- License: gpl-3.0
- Created: 2023-07-03T01:31:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-03T01:45:57.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T16:27:48.389Z (4 months ago)
- Topics: python, python-package, rocket-league, rocketleague
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```