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/constructor.py
2022-06-01 14:31:52 +01:00

25 lines
798 B
Python

from dataclasses import dataclass
@dataclass
class Constructor:
"""
Representation of a Formula One Team
Constructors may contain:
constructorId: String
url: String
name: String
nationality: String
"""
def __init__(self, constructorId: str, url: str, name: str, nationality: str) -> None:
self.constructorId = constructorId
self.url = url
self.name = name
self.nationality = nationality
pass
def __str__(self):
return f"Constructor(constructorId={self.constructorId}, url={self.url}, name={self.name}, nationality={self.nationality})"
def __repr__(self):
return f"Constructor(constructorId={self.constructorId}, url={self.url}, name={self.name}, nationality={self.nationality})"