| 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/paramiko-stubs/ |
Upload File : |
from _typeshed import ReadableBuffer
from collections.abc import Iterable
from io import BytesIO
from typing import Any, Protocol
from typing_extensions import TypeAlias
class _SupportsAsBytes(Protocol):
def asbytes(self) -> bytes: ...
_LikeBytes: TypeAlias = bytes | str | _SupportsAsBytes | ReadableBuffer
class Message:
big_int: int
packet: BytesIO
seqno: int # only when packet.Packetizer.read_message() is used
def __init__(self, content: ReadableBuffer | None = None) -> None: ...
def __bytes__(self) -> bytes: ...
def asbytes(self) -> bytes: ...
def rewind(self) -> None: ...
def get_remainder(self) -> bytes: ...
def get_so_far(self) -> bytes: ...
def get_bytes(self, n: int) -> bytes: ...
def get_byte(self) -> bytes: ...
def get_boolean(self) -> bool: ...
def get_adaptive_int(self) -> int: ...
def get_int(self) -> int: ...
def get_int64(self) -> int: ...
def get_mpint(self) -> int: ...
def get_string(self) -> bytes: ...
def get_text(self) -> str: ...
def get_binary(self) -> bytes: ...
def get_list(self) -> list[str]: ...
def add_bytes(self, b: ReadableBuffer) -> Message: ...
def add_byte(self, b: ReadableBuffer) -> Message: ...
def add_boolean(self, b: bool) -> Message: ...
def add_int(self, n: int) -> Message: ...
def add_adaptive_int(self, n: int) -> Message: ...
def add_int64(self, n: int) -> Message: ...
def add_mpint(self, z: int) -> Message: ...
def add_string(self, s: _LikeBytes) -> Message: ...
def add_list(self, l: Iterable[str]) -> Message: ...
def add(self, *seq: Any) -> None: ...