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

29 lines
674 B
Python
Raw Normal View History

""" Season class """
2022-06-01 15:31:52 +02:00
from dataclasses import dataclass
2022-06-01 15:31:52 +02:00
@dataclass
2022-06-06 13:20:48 +02:00
class Season():
2022-06-01 15:31:52 +02:00
"""
Representation of a single Season in Formula One
2022-06-01 15:31:52 +02:00
Seasons may contain:
season: Integer
url: String
"""
def __init__(self, season: int, url: str) -> None:
self.season = season
self.url = url
2022-06-06 13:20:48 +02:00
def __repr__(self) -> str:
members = ', '.join(f"{key}={value}" for key, value in self.__dict__.items())
return f"{type(self).__name__}({members})"
2022-06-10 00:19:28 +02:00
def __eq__(self, __o: object) -> bool:
return isinstance(__o, Season) and (
self.season == __o.season and
self.url == __o.url
)