This repository has been archived on 2022-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
ergast-py/ergast_py/models/timing.py
2022-06-01 14:31:52 +01:00

24 lines
686 B
Python

from dataclasses import dataclass
import datetime
@dataclass
class Timing:
"""
Representation of a single timing from a lap in Formula One
Timings may contain:
driverId: String
position: Integer
time: datetime.time
"""
def __init__(self, driverId: str, position: int, time: datetime.time) -> None:
self.driverId = driverId
self.position = position
self.time = time
pass
def __str__(self):
return f"Timing(driverId={self.driverId}, position={self.position}, time={self.time})"
def __repr__(self):
return f"Timing(driverId={self.driverId}, position={self.position}, time={self.time})"