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] | |
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] | |