17 lines
346 B
Python
17 lines
346 B
Python
from pcslive import LiveStats
|
|
|
|
stats = LiveStats()
|
|
|
|
from pcslive import LiveStats
|
|
|
|
stats = LiveStats()
|
|
race = stats.find_race("ethias")
|
|
race.get_situation_long()
|
|
|
|
if race.situation_long:
|
|
for group in race.situation_long:
|
|
for item in group:
|
|
print(item)
|
|
print("================")
|
|
else:
|
|
print("No situation data") |