| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/netaddr-stubs/ |
Upload File : |
from _typeshed import Incomplete, SupportsWrite
from collections.abc import Iterator, Mapping
from typing_extensions import Final
BIG_ENDIAN_PLATFORM: bool
P: Final = 1
INET_PTON: Final = 1
Z: Final = 2
ZEROFILL: Final = 2
N: Final = 4
NOHOST: Final = 4
class AddrFormatError(Exception): ...
class AddrConversionError(Exception): ...
class NotRegisteredError(Exception): ...
def num_bits(int_val: int) -> int: ...
class Subscriber:
def update(self, data: Incomplete) -> None: ...
class PrettyPrinter(Subscriber):
fh: SupportsWrite[str]
write_eol: bool
def __init__(self, fh: SupportsWrite[str] = ..., write_eol: bool = True) -> None: ...
def update(self, data: object) -> None: ...
class Publisher:
subscribers: list[Subscriber]
def __init__(self) -> None: ...
def attach(self, subscriber: Subscriber) -> None: ...
def detach(self, subscriber: Subscriber) -> None: ...
def notify(self, data: object) -> None: ...
class DictDotLookup:
def __init__(self, d: Mapping[str, object]) -> None: ...
def __getitem__(self, name: str) -> object: ...
def __iter__(self) -> Iterator[str]: ...