9 lines
335 B
Python
9 lines
335 B
Python
OPENF1_URL: str = "https://api.openf1.org/v1"
|
|
|
|
OPENF1_SESSION_ENDPOINT: str = f"{OPENF1_URL}/sessions"
|
|
OPENF1_POSITION_ENDPOINT: str = f"{OPENF1_URL}/position"
|
|
OPENF1_DRIVER_ENDPOINT: str = f"{OPENF1_URL}/drivers"
|
|
|
|
OPENF1_SESSION_TYPE_RACE: str = "Race"
|
|
OPENF1_SESSION_NAME_RACE: str = "Race"
|
|
OPENF1_SESSION_NAME_SPRINT: str = "Sprint" |