2026-05-30 19:46:32 +01:00
|
|
|
from pcslive import LiveStats
|
|
|
|
|
|
|
|
|
|
stats = LiveStats()
|
|
|
|
|
|
2026-06-02 15:04:42 +01:00
|
|
|
from pcslive import LiveStats
|
2026-05-30 19:46:32 +01:00
|
|
|
|
2026-06-02 15:04:42 +01:00
|
|
|
stats = LiveStats()
|
|
|
|
|
race = stats.find_race("ethias")
|
|
|
|
|
race.get_situation_long()
|
2026-05-30 19:46:32 +01:00
|
|
|
|
2026-06-02 15:04:42 +01:00
|
|
|
if race.situation_long:
|
|
|
|
|
for group in race.situation_long:
|
|
|
|
|
for item in group:
|
|
|
|
|
print(item)
|
|
|
|
|
print("================")
|
|
|
|
|
else:
|
|
|
|
|
print("No situation data")
|