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/location.py
2022-06-06 12:20:48 +01:00

27 lines
678 B
Python

""" Location class """
from dataclasses import dataclass
@dataclass
class Location():
"""
Representation of a Location for a Formula One Circuit
Locations may contain:
lat: Float
long: Float
locality: String
country: String
"""
def __init__(self, latitude: float, longitude: float, locality: str, country: str) -> None:
self.latitude = latitude
self.longitude = longitude
self.locality = locality
self.country = country
def __repr__(self) -> str:
members = ', '.join(f"{key}={value}" for key, value in self.__dict__.items())
return f"{type(self).__name__}({members})"