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/driver_standing.py

35 lines
1.0 KiB
Python
Raw Normal View History

""" DriverStanding class """
2022-06-01 14:31:52 +01:00
from dataclasses import dataclass
from ergast_py.models.constructor import Constructor
2022-06-01 14:31:52 +01:00
from ergast_py.models.driver import Driver
2022-06-01 14:31:52 +01:00
@dataclass
2022-06-06 12:20:48 +01:00
class DriverStanding():
2022-06-01 14:31:52 +01:00
"""
Representation of a Formula One Driver's standing in a Season
2022-06-01 14:31:52 +01:00
Driver Standings may contain:
position: Integer
position_text: String
2022-06-01 14:31:52 +01:00
points: Float
wins: Integer
driver: Driver
constructors: Constructor[]
"""
def __init__(self, position: int, position_text: str, points: float, wins: int, driver: Driver, #pylint: disable=too-many-arguments
2022-06-01 14:31:52 +01:00
constructors: list[Constructor]) -> None:
self.position = position
self.position_text = position_text
2022-06-01 14:31:52 +01:00
self.points = points
self.wins = wins
self.driver = driver
self.constructors = constructors
2022-06-06 12:20:48 +01:00
def __repr__(self) -> str:
members = ', '.join(f"{key}={value}" for key, value in self.__dict__.items())
return f"{type(self).__name__}({members})"