A Python wrapper for RuStat API
Project description
rustat-python-api
Python wrapper for the Rustat API
Example of usage:
- Install the package:
pip install rustat-python-api
- Usage:
from rustat_python_api import RuStatParser, DynamoLab, PitchControl
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)
host = "http://localhost:8001/"
client = DynamoLab(host)
client.run_model(
model="xT",
data=events,
inplace=True,
inplace_column=model
)
pc = PitchControl(tracking, events)
pc.draw_pitch_control(half=1, tp=100, save=True, filename="pitch_control")
# ffmpeg required for animation
pc.animate_pitch_control(half=1, tp=100, frames=30, filename="pitch_control")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rustat-python-api-0.7.1.tar.gz
(14.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rustat-python-api-0.7.1.tar.gz.
File metadata
- Download URL: rustat-python-api-0.7.1.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ac516c8d9381d4c832e0c41e0c901d14b8ef943d2ea8df382f2e339025bec27
|
|
| MD5 |
8617cecdc42fe2bf1c2b46bb85bda00c
|
|
| BLAKE2b-256 |
4ec4174b237778a7aa03a07f41ce876fdc13b6cb98123849f69cde02a13602fa
|
File details
Details for the file rustat_python_api-0.7.1-py3-none-any.whl.
File metadata
- Download URL: rustat_python_api-0.7.1-py3-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f351a1d1c12d2f889bf918797ba3e48564fe545e3971a66fd1604df59dc63b70
|
|
| MD5 |
3875f696b0562545b2bd3dff91339d77
|
|
| BLAKE2b-256 |
7eec9f21cc7e5e31a77892b64f10a98490d378669655191e01eeb3b95f44a6a1
|