- Install the package:
pip install rustat-python-api
- Usage:
from rustat_python_api import RuStatParser
user = "your_login"
password = "your_password"
parser = RuStatParser(user, password)
info = parser.get_rpl_info()
keys = list(info.keys())
season_id, team_id = keys[-1], info[keys[-1]]["season_teams"][0]["id"]
schedule = parser.get_schedule(team_id, season_id)
keys = list(schedule.keys())
match_id = keys[-1]
events, subs = parser.get_events(match_id, process=True, return_subs=True)
stats = parser.get_match_stats(match_id)
tracking = parser.get_tracking(match_id)