File size: 255 Bytes
711bc31 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from token import OP
from typing import Optional, TypedDict
class Location(TypedDict):
location: str
latitude: Optional[str]
longitude: Optional[str]
country_code: Optional[str]
country_name: Optional[str]
admin1: Optional[str]
|