12 lines
221 B
Python
12 lines
221 B
Python
|
|
from pcslive import LiveStats
|
||
|
|
import time
|
||
|
|
|
||
|
|
stats = LiveStats()
|
||
|
|
|
||
|
|
if len(stats.races) > 0:
|
||
|
|
race = stats.races[0]
|
||
|
|
|
||
|
|
race.get_situation_long()
|
||
|
|
|
||
|
|
for x in race.situation_long:
|
||
|
|
print(x, race.situation_long[x])
|