Your IP : 3.146.206.87


Current Path : /opt/imunify360/venv/lib64/python3.11/site-packages/geoip2/
Upload File :
Current File : //opt/imunify360/venv/lib64/python3.11/site-packages/geoip2/types.py

"""Provides types used internally"""

from ipaddress import IPv4Address, IPv6Address
from typing import Union

IPAddress = Union[str, IPv6Address, IPv4Address]

?>