some updates from todays racing and functions added for easier timeline use

This commit is contained in:
cube
2026-06-01 16:56:43 +01:00
parent f16e75731c
commit 937b07a61d
4 changed files with 101 additions and 15 deletions

View File

@@ -0,0 +1,11 @@
from pcslive import LiveStats
import time
stats = LiveStats()
race = stats.find_race("giro")
while True:
race.get_timeline()
latest = race.timeline_latest()
if latest:
print(latest)
time.sleep(10)