Current Path :
/
opt
/
alt
/
python38
/
lib
/
python3.8
/
site-packages
/
geoip2
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//opt/alt/python38/lib/python3.8/site-packages/geoip2/types.py
"""Provides types used internally""" from ipaddress import IPv4Address, IPv6Address from typing import Union IPAddress = Union[str, IPv6Address, IPv4Address]