11 lines
214 B
Python
11 lines
214 B
Python
from pcslive import LiveStats
|
|
|
|
stats = LiveStats()
|
|
|
|
if len(stats.races) > 0:
|
|
race = stats.races[0]
|
|
print("Latest timeline update from", race.title, ":")
|
|
|
|
race.get_timeline()
|
|
|
|
print(race.timeline[0]) |