content
stringlengths
1
103k
path
stringlengths
8
216
filename
stringlengths
2
179
language
stringclasses
15 values
size_bytes
int64
2
189k
quality_score
float64
0.5
0.95
complexity
float64
0
1
documentation_ratio
float64
0
1
repository
stringclasses
5 values
stars
int64
0
1k
created_date
stringdate
2023-07-10 19:21:08
2025-07-09 19:11:45
license
stringclasses
4 values
is_test
bool
2 classes
file_hash
stringlengths
32
32
import sys\nfrom _typeshed import ReadableBuffer\nfrom typing import Callable\n\nfrom paramiko.kex_group1 import KexGroup1 as KexGroup1\n\nif sys.version_info < (3, 0):\n from hashlib import _hash as _Hash\nelse:\n from hashlib import _Hash\n\nclass KexGroup16SHA512(KexGroup1):\n name: str\n P: int\n G: ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\kex_group16.pyi
kex_group16.pyi
Other
359
0.85
0.125
0
react-lib
5
2025-06-02T08:40:56.022448
BSD-3-Clause
false
f6dbac23934de61f9efaa87057aaae03
from typing import Optional\n\nfrom paramiko.message import Message\nfrom paramiko.ssh_gss import _SSH_GSSAuth\nfrom paramiko.transport import Transport\n\nMSG_KEXGSS_INIT: int\nMSG_KEXGSS_CONTINUE: int\nMSG_KEXGSS_COMPLETE: int\nMSG_KEXGSS_HOSTKEY: int\nMSG_KEXGSS_ERROR: int\nMSG_KEXGSS_GROUPREQ: int\nMSG_KEXGSS_GROUP...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\kex_gss.pyi
kex_gss.pyi
Other
1,539
0.85
0.181818
0
awesome-app
986
2024-02-08T18:19:25.139732
MIT
false
fd72c2425811351f2208834e18b93715
import sys\nfrom typing import Any, Iterable, List, Optional, Text\n\nfrom .common import _LikeBytes\n\nif sys.version_info < (3, 0):\n from StringIO import StringIO\n\n BytesIO = StringIO[bytes]\nelse:\n from io import BytesIO\n\nclass Message:\n big_int: int\n packet: BytesIO\n seqno: int # only wh...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\message.pyi
message.pyi
Other
1,496
0.95
0.666667
0
vue-tools
161
2023-10-26T23:49:48.557299
Apache-2.0
false
d2ab97746759039f6da903665d344cb7
import sys\nfrom logging import Logger\nfrom socket import socket\nfrom typing import Any, Callable, Tuple\n\nfrom cryptography.hazmat.primitives.ciphers import Cipher\nfrom paramiko.compress import ZlibCompressor, ZlibDecompressor\nfrom paramiko.message import Message\n\nif sys.version_info < (3, 0):\n from hashlib...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\packet.pyi
packet.pyi
Other
2,187
0.85
0.466667
0
react-lib
970
2023-07-12T11:58:25.105052
BSD-3-Clause
false
68e13ff64a5eea2b2693f3dd6237cb2b
from typing import Protocol, Tuple\n\nclass _BasePipe(Protocol):\n def clear(self) -> None: ...\n def set(self) -> None: ...\n\nclass _Pipe(_BasePipe, Protocol):\n def close(self) -> None: ...\n def fileno(self) -> int: ...\n def set_forever(self) -> None: ...\n\ndef make_pipe() -> _Pipe: ...\n\nclass Po...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\pipe.pyi
pipe.pyi
Other
951
0.85
0.771429
0
vue-tools
109
2024-11-29T18:16:10.331360
Apache-2.0
false
5b246be53866f5091fc860709e5fcbf8
from typing import IO, Any, Optional, Pattern, Text, Union\n\nfrom paramiko.message import Message\n\nOPENSSH_AUTH_MAGIC: bytes = ...\n\ndef _unpad_openssh(data: bytes) -> bytes: ...\n\nclass PKey:\n public_blob: Optional[PublicBlob]\n BEGIN_TAG: Pattern[str]\n END_TAG: Pattern[str]\n def __init__(self, msg...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\pkey.pyi
pkey.pyi
Other
1,800
0.85
0.568182
0
node-utils
536
2024-11-23T19:30:07.095147
GPL-3.0
false
0d778649c7b6d3c75faa22b8a9699d92
from typing import Dict, List, Tuple\n\nclass ModulusPack:\n pack: Dict[int, List[Tuple[int, int]]]\n discarded: List[Tuple[int, str]]\n def __init__(self) -> None: ...\n def read_file(self, filename: str) -> None: ...\n def get_modulus(self, min: int, prefer: int, max: int) -> Tuple[int, int]: ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\primes.pyi
primes.pyi
Other
308
0.85
0.5
0
node-utils
444
2025-01-11T07:11:26.987454
BSD-3-Clause
false
7e958c4ecca8f4a0153e8ee0819d2c7f
from subprocess import Popen\nfrom typing import List, Optional\n\nfrom paramiko.util import ClosingContextManager\n\nclass ProxyCommand(ClosingContextManager):\n cmd: List[str]\n process: Popen\n timeout: Optional[float]\n def __init__(self, command_line: str) -> None: ...\n def send(self, content: byte...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\proxy.pyi
proxy.pyi
Other
504
0.85
0.4375
0
vue-tools
486
2023-08-24T23:09:52.043224
MIT
false
84d4328ed6d4bb6881ecae46bb4d27cc
import sys\nfrom typing import Any, Iterable, Sequence, Text, Type, TypeVar, Union\n\n_T = TypeVar("_T")\n\nPY2: bool\n\nstring_types: Union[Type, Sequence[Type]]\ntext_type: Union[Type, Sequence[Type]]\nbytes_types: Union[Type, Sequence[Type]]\nbytes = bytes\ninteger_types: Union[Type, Sequence[Type]]\nlong = int\n\nd...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\py3compat.pyi
py3compat.pyi
Other
1,053
0.85
0.292683
0
python-kit
751
2023-07-19T08:41:38.962600
Apache-2.0
false
6411a619cfdf049694c6e6877ec358b5
from typing import IO, Any, Callable, Optional, Union\n\nfrom cryptography.hazmat.primitives.asymmetric.rsa import RSAPrivateKey, RSAPublicKey, RSAPublicNumbers\nfrom paramiko.message import Message\nfrom paramiko.pkey import PKey\n\nclass RSAKey(PKey):\n key: Union[None, RSAPublicKey, RSAPrivateKey]\n public_blo...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\rsakey.pyi
rsakey.pyi
Other
1,347
0.85
0.424242
0
node-utils
7
2024-11-30T10:26:34.014999
Apache-2.0
false
1c0e4180d3c24bc04dc3ca93a2d28459
import threading\nfrom typing import Any, List, Optional, Tuple, Union\n\nfrom paramiko.channel import Channel\nfrom paramiko.message import Message\nfrom paramiko.pkey import PKey\nfrom paramiko.transport import Transport\n\nclass ServerInterface:\n def check_channel_request(self, kind: str, chanid: int) -> int: .....
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\server.pyi
server.pyi
Other
3,062
0.85
0.627451
0
vue-tools
468
2025-01-08T00:40:41.536479
MIT
false
b7846db3aa60a9fabfcc54b8b2461875
from logging import Logger\nfrom typing import Dict, List, Optional\n\nfrom paramiko.channel import Channel\n\nCMD_INIT: int\nCMD_VERSION: int\nCMD_OPEN: int\nCMD_CLOSE: int\nCMD_READ: int\nCMD_WRITE: int\nCMD_LSTAT: int\nCMD_FSTAT: int\nCMD_SETSTAT: int\nCMD_FSETSTAT: int\nCMD_OPENDIR: int\nCMD_READDIR: int\nCMD_REMOV...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\sftp.pyi
sftp.pyi
Other
1,065
0.85
0.04918
0
node-utils
969
2024-06-10T21:47:47.246681
Apache-2.0
false
76ad48a80837988b7b6b163a2985cf66
from os import stat_result\nfrom typing import Dict, Optional\n\nclass SFTPAttributes:\n FLAG_SIZE: int\n FLAG_UIDGID: int\n FLAG_PERMISSIONS: int\n FLAG_AMTIME: int\n FLAG_EXTENDED: int\n st_size: Optional[int]\n st_uid: Optional[int]\n st_gid: Optional[int]\n st_mode: Optional[int]\n st_...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\sftp_attr.pyi
sftp_attr.pyi
Other
667
0.95
0.181818
0
awesome-app
803
2024-03-25T22:50:22.769949
Apache-2.0
false
67676f6523ddd5c40e6011294d0c7230
from logging import Logger\nfrom typing import IO, Any, Callable, Iterator, List, Optional, Text, Tuple, Union\n\nfrom paramiko.channel import Channel\nfrom paramiko.sftp import BaseSFTP\nfrom paramiko.sftp_attr import SFTPAttributes\nfrom paramiko.sftp_file import SFTPFile\nfrom paramiko.transport import Transport\nfr...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\sftp_client.pyi
sftp_client.pyi
Other
3,133
0.85
0.447761
0
react-lib
349
2024-11-26T08:16:15.979373
BSD-3-Clause
false
f6470e83badeb791fd3b2ebe9b503740
from typing import Iterator, Optional, Sequence, Tuple\n\nfrom paramiko.file import BufferedFile\nfrom paramiko.sftp_attr import SFTPAttributes\nfrom paramiko.sftp_client import SFTPClient\nfrom paramiko.sftp_handle import SFTPHandle\n\nclass SFTPFile(BufferedFile):\n MAX_REQUEST_SIZE: int\n sftp: SFTPClient\n ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\sftp_file.pyi
sftp_file.pyi
Other
1,356
0.85
0.62069
0
vue-tools
177
2023-11-08T10:38:57.360500
GPL-3.0
false
799810c0f1c2ec4cf909f0e5fc7ecd4b
from typing import Union\n\nfrom paramiko.sftp_attr import SFTPAttributes\nfrom paramiko.sftp_server import SFTPServer\nfrom paramiko.util import ClosingContextManager\n\nclass SFTPHandle(ClosingContextManager):\n def __init__(self, flags: int = ...) -> None: ...\n def close(self) -> None: ...\n def read(self,...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\sftp_handle.pyi
sftp_handle.pyi
Other
531
0.85
0.538462
0
vue-tools
854
2024-03-11T18:32:12.660094
BSD-3-Clause
false
c1131d98bb9b51f34288d8d2d6d4b750
from logging import Logger\nfrom typing import Any, Dict, Optional, Type\n\nfrom paramiko.channel import Channel\nfrom paramiko.server import ServerInterface, SubsystemHandler\nfrom paramiko.sftp import BaseSFTP\nfrom paramiko.sftp_attr import SFTPAttributes\nfrom paramiko.sftp_handle import SFTPHandle\nfrom paramiko.s...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\sftp_server.pyi
sftp_server.pyi
Other
1,094
0.85
0.214286
0
python-kit
503
2025-06-03T22:32:56.887230
BSD-3-Clause
false
0c5605c0f0650a313edf33c8f82f66a2
from typing import Any, List, Union\n\nfrom paramiko.server import ServerInterface\nfrom paramiko.sftp_attr import SFTPAttributes\nfrom paramiko.sftp_handle import SFTPHandle\n\nclass SFTPServerInterface:\n def __init__(self, server: ServerInterface, *largs: Any, **kwargs: Any) -> None: ...\n def session_started(...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\sftp_si.pyi
sftp_si.pyi
Other
1,193
0.85
0.73913
0
python-kit
282
2023-07-11T02:35:40.520975
MIT
false
ff9a06a9d724fb6d9d308ab05278e3d4
import socket\nfrom typing import List, Mapping, Tuple, Union\n\nfrom paramiko.pkey import PKey\n\nclass SSHException(Exception): ...\nclass AuthenticationException(SSHException): ...\nclass PasswordRequiredException(AuthenticationException): ...\n\nclass BadAuthenticationType(AuthenticationException):\n allowed_typ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\ssh_exception.pyi
ssh_exception.pyi
Other
1,454
0.85
0.439024
0
react-lib
67
2023-11-15T00:41:01.920345
Apache-2.0
false
69e1b8e50fe26ec5fe9b68797798a200
from typing import Any, Optional, Tuple, Type\n\nfrom paramiko.ssh_exception import SSHException\n\nGSS_AUTH_AVAILABLE: bool\nGSS_EXCEPTIONS: Tuple[Type[Exception], ...]\n\ndef GSSAuth(auth_method: str, gss_deleg_creds: bool = ...) -> _SSH_GSSAuth: ...\n\nclass _SSH_GSSAuth:\n cc_file: None\n def __init__(self, a...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\ssh_gss.pyi
ssh_gss.pyi
Other
2,774
0.85
0.574074
0
node-utils
370
2025-03-06T15:26:35.265351
BSD-3-Clause
false
21302f13ceb2f5c94195f5ccaa36488b
from logging import Logger\nfrom socket import socket\nfrom threading import Condition, Event, Lock, Thread\nfrom types import ModuleType\nfrom typing import Any, Callable, Dict, Iterable, List, Optional, Protocol, Sequence, Tuple, Type, Union\n\nfrom paramiko.auth_handler import AuthHandler, _InteractiveCallback\nfrom...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\transport.pyi
transport.pyi
Other
7,945
0.85
0.381443
0
awesome-app
756
2024-01-05T16:18:18.046208
MIT
false
ceb885da335d12d6a794cd2966283c3f
import sys\nfrom logging import Logger, LogRecord\nfrom types import TracebackType\nfrom typing import IO, AnyStr, Callable, Generic, List, Optional, Protocol, Text, Type, TypeVar, Union\n\nfrom paramiko.config import SSHConfig, SSHConfigDict\nfrom paramiko.hostkeys import HostKeys\n\nif sys.version_info < (3, 0):\n ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\util.pyi
util.pyi
Other
1,880
0.85
0.519231
0
vue-tools
932
2024-02-25T11:36:05.336655
BSD-3-Clause
false
d26e165fd7af037a59c4bbfadec39282
import ctypes.wintypes\nimport sys\n\nassert sys.platform == "win32"\n\nwin32con_WM_COPYDATA: int\n\ndef can_talk_to_agent(): ...\n\nclass COPYDATASTRUCT(ctypes.Structure): ...\n\nclass PageantConnection:\n def __init__(self) -> None: ...\n def send(self, data: bytes) -> None: ...\n def recv(self, n: int) -> b...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\win_pageant.pyi
win_pageant.pyi
Other
349
0.85
0.4375
0
node-utils
588
2024-06-06T13:37:30.449289
MIT
false
4e7bf4f8a9774cb4d3b676dd4cb1344e
from typing import Tuple\n\n__version_info__: Tuple[int, int, int]\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\_version.pyi
_version.pyi
Other
65
0.65
0
0
python-kit
815
2023-10-03T08:48:51.107807
Apache-2.0
false
f3af3fdcb8560147f33adefc6dfe9c79
import builtins\nimport ctypes.wintypes\nimport sys\nfrom types import TracebackType\nfrom typing import Any, Optional, Type, TypeVar\n\nassert sys.platform == "win32"\n\n_T = TypeVar("_T")\n\ndef format_system_message(errno: int) -> Optional[str]: ...\n\nclass WindowsError(builtins.WindowsError):\n def __init__(sel...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\_winapi.pyi
_winapi.pyi
Other
2,649
0.85
0.257732
0
react-lib
238
2025-06-15T01:11:09.038380
Apache-2.0
false
c1ad01ce3973eda2c68359a62cf2478c
from paramiko.agent import Agent as Agent, AgentKey as AgentKey\nfrom paramiko.channel import Channel as Channel\nfrom paramiko.client import (\n AutoAddPolicy as AutoAddPolicy,\n MissingHostKeyPolicy as MissingHostKeyPolicy,\n RejectPolicy as RejectPolicy,\n SSHClient as SSHClient,\n WarningPolicy as Wa...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\paramiko\__init__.pyi
__init__.pyi
Other
1,919
0.95
0
0.05
node-utils
860
2023-11-06T21:43:24.283386
BSD-3-Clause
false
75e9650a204e69529bcea665aaea5f08
from typing import Any\n\nMBLENGTH: Any\n\nclass Charset:\n is_default: Any\n def __init__(self, id, name, collation, is_default): ...\n\nclass Charsets:\n def __init__(self): ...\n def add(self, c): ...\n def by_id(self, id): ...\n def by_name(self, name): ...\n\ndef charset_by_name(name): ...\ndef c...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\charset.pyi
charset.pyi
Other
327
0.85
0.5625
0
react-lib
136
2023-09-12T00:14:58.563170
MIT
false
3a36a31baf2e96046aac37c411c5631e
from socket import SocketType\nfrom typing import Any, AnyStr, Mapping, Optional, Tuple, Type\n\nfrom .charset import charset_by_id as charset_by_id, charset_by_name as charset_by_name\nfrom .constants import CLIENT as CLIENT, COMMAND as COMMAND, FIELD_TYPE as FIELD_TYPE, SERVER_STATUS as SERVER_STATUS\nfrom .cursors i...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\connections.pyi
connections.pyi
Other
5,627
0.85
0.412791
0
python-kit
526
2023-12-10T03:23:34.389927
Apache-2.0
false
2a464f36610a96ba234bf165902c2c74
from typing import Any\n\nfrom .charset import charset_by_id as charset_by_id\nfrom .constants import FIELD_TYPE as FIELD_TYPE, FLAG as FLAG\n\nPYTHON3: Any\nESCAPE_REGEX: Any\nESCAPE_MAP: Any\n\ndef escape_item(val, charset): ...\ndef escape_dict(val, charset): ...\ndef escape_sequence(val, charset): ...\ndef escape_s...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\converters.pyi
converters.pyi
Other
1,331
0.85
0.595745
0
react-lib
459
2024-11-01T05:15:40.314138
MIT
false
07f8b4fe1aa7d01cd300fdd073bb0050
from typing import Any, Dict, Iterable, Iterator, List, Optional, Text, Tuple, TypeVar, Union\n\nfrom .connections import Connection\n\n_Gen = Union[Tuple[Any, ...], Dict[Text, Any]]\n_QueryArgs = Union[Tuple[Any, ...], List[Any], Dict[Text, Any], None]\n_SelfT = TypeVar("_SelfT")\n\nclass Cursor:\n connection: Conn...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\cursors.pyi
cursors.pyi
Other
2,180
0.95
0.576923
0.022222
react-lib
484
2024-07-12T03:47:32.597409
MIT
false
3909133ae5db02d57f604487f6179084
import builtins\nfrom typing import Dict, NoReturn, Type\n\nfrom .constants import ER as ER\n\nclass MySQLError(Exception): ...\nclass Warning(builtins.Warning, MySQLError): ...\nclass Error(MySQLError): ...\nclass InterfaceError(Error): ...\nclass DatabaseError(Error): ...\nclass DataError(DatabaseError): ...\nclass O...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\err.pyi
err.pyi
Other
606
0.85
0.6
0
awesome-app
949
2025-05-05T21:42:17.634227
BSD-3-Clause
false
a6edb8364338fd0171b1960c1e99e926
from typing import Any\n\nDate: Any\nTime: Any\nTimeDelta: Any\nTimestamp: Any\n\ndef DateFromTicks(ticks): ...\ndef TimeFromTicks(ticks): ...\ndef TimestampFromTicks(ticks): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\times.pyi
times.pyi
Other
170
0.85
0.3
0
vue-tools
393
2025-04-03T20:41:22.260406
BSD-3-Clause
false
531898d8482eb5a40e6d40da390b31c1
def byte2int(b): ...\ndef int2byte(i): ...\ndef join_bytes(bs): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\util.pyi
util.pyi
Other
66
0.65
1
0
awesome-app
466
2025-06-30T08:41:08.465887
MIT
false
c9a8f6a1128b67baa9fc1d27fc23f28a
import sys\nfrom typing import Callable, FrozenSet, Tuple\n\nfrom .connections import Connection as _Connection\nfrom .constants import FIELD_TYPE as FIELD_TYPE\nfrom .converters import escape_dict as escape_dict, escape_sequence as escape_sequence, escape_string as escape_string\nfrom .err import (\n DatabaseError ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\__init__.pyi
__init__.pyi
Other
1,625
0.85
0.174603
0
python-kit
567
2024-12-09T00:17:06.999317
BSD-3-Clause
false
0ac5d7b9c9882ae003b3263786630e02
LONG_PASSWORD: int\nFOUND_ROWS: int\nLONG_FLAG: int\nCONNECT_WITH_DB: int\nNO_SCHEMA: int\nCOMPRESS: int\nODBC: int\nLOCAL_FILES: int\nIGNORE_SPACE: int\nPROTOCOL_41: int\nINTERACTIVE: int\nSSL: int\nIGNORE_SIGPIPE: int\nTRANSACTIONS: int\nSECURE_CONNECTION: int\nMULTI_STATEMENTS: int\nMULTI_RESULTS: int\nCAPABILITIES:...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\constants\CLIENT.pyi
CLIENT.pyi
Other
308
0.7
0
0
python-kit
492
2024-12-26T06:18:10.654873
Apache-2.0
false
625f826120b7dcd7e20d400484687369
COM_SLEEP: int\nCOM_QUIT: int\nCOM_INIT_DB: int\nCOM_QUERY: int\nCOM_FIELD_LIST: int\nCOM_CREATE_DB: int\nCOM_DROP_DB: int\nCOM_REFRESH: int\nCOM_SHUTDOWN: int\nCOM_STATISTICS: int\nCOM_PROCESS_INFO: int\nCOM_CONNECT: int\nCOM_PROCESS_KILL: int\nCOM_DEBUG: int\nCOM_PING: int\nCOM_TIME: int\nCOM_DELAYED_INSERT: int\nCOM...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\constants\COMMAND.pyi
COMMAND.pyi
Other
407
0.7
0
0
react-lib
653
2024-05-08T23:59:21.355098
Apache-2.0
false
161441ac721bbd3782fd6a7bd1ec3640
ERROR_FIRST: int\nHASHCHK: int\nNISAMCHK: int\nNO: int\nYES: int\nCANT_CREATE_FILE: int\nCANT_CREATE_TABLE: int\nCANT_CREATE_DB: int\nDB_CREATE_EXISTS: int\nDB_DROP_EXISTS: int\nDB_DROP_DELETE: int\nDB_DROP_RMDIR: int\nCANT_DELETE_FILE: int\nCANT_FIND_SYSTEM_REC: int\nCANT_GET_STAT: int\nCANT_GET_WD: int\nCANT_LOCK: in...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\constants\ER.pyi
ER.pyi
Other
11,280
0.7
0
0
react-lib
804
2024-04-17T19:35:33.251878
BSD-3-Clause
false
4e049a9c5edeb260abedd52dbbe1a69b
DECIMAL: int\nTINY: int\nSHORT: int\nLONG: int\nFLOAT: int\nDOUBLE: int\nNULL: int\nTIMESTAMP: int\nLONGLONG: int\nINT24: int\nDATE: int\nTIME: int\nDATETIME: int\nYEAR: int\nNEWDATE: int\nVARCHAR: int\nBIT: int\nNEWDECIMAL: int\nENUM: int\nSET: int\nTINY_BLOB: int\nMEDIUM_BLOB: int\nLONG_BLOB: int\nBLOB: int\nVAR_STRI...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\constants\FIELD_TYPE.pyi
FIELD_TYPE.pyi
Other
354
0.7
0
0
python-kit
491
2023-11-10T08:50:54.211503
GPL-3.0
false
ad65774a6dc141f598f801b1180763e8
from typing import Any\n\nNOT_NULL: Any\nPRI_KEY: Any\nUNIQUE_KEY: Any\nMULTIPLE_KEY: Any\nBLOB: Any\nUNSIGNED: Any\nZEROFILL: Any\nBINARY: Any\nENUM: Any\nAUTO_INCREMENT: Any\nTIMESTAMP: Any\nSET: Any\nPART_KEY: Any\nGROUP: Any\nUNIQUE: Any\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\constants\FLAG.pyi
FLAG.pyi
Other
226
0.85
0
0
node-utils
282
2024-01-31T14:46:07.183572
MIT
false
091612a65fb18698bb5582f80e2ff5ba
SERVER_STATUS_IN_TRANS: int\nSERVER_STATUS_AUTOCOMMIT: int\nSERVER_MORE_RESULTS_EXISTS: int\nSERVER_QUERY_NO_GOOD_INDEX_USED: int\nSERVER_QUERY_NO_INDEX_USED: int\nSERVER_STATUS_CURSOR_EXISTS: int\nSERVER_STATUS_LAST_ROW_SENT: int\nSERVER_STATUS_DB_DROPPED: int\nSERVER_STATUS_NO_BACKSLASH_ESCAPES: int\nSERVER_STATUS_ME...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pymysql\constants\SERVER_STATUS.pyi
SERVER_STATUS.pyi
Other
331
0.7
0
0
python-kit
729
2025-01-12T13:46:42.336289
GPL-3.0
false
4edc53b60a5d9574611e7f5be2c8a0a4
from datetime import datetime\nfrom typing import Any, Callable, Dict, Generic, Iterable, List, Mapping, Optional, Set, Text, Type, TypeVar, Union\n\n_T = TypeVar("_T")\n_KT = TypeVar("_KT")\n_VT = TypeVar("_VT")\n_MT = TypeVar("_MT", bound=MapAttribute[Any, Any])\n\nclass Attribute(Generic[_T]):\n attr_name: Option...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\attributes.pyi
attributes.pyi
Other
4,342
0.85
0.508475
0.01
vue-tools
52
2025-05-03T08:43:34.162692
Apache-2.0
false
a7eee16bbe6870a1f2b42d3b94982da5
from typing import Any\n\nBATCH_WRITE_ITEM: str\nDESCRIBE_TABLE: str\nBATCH_GET_ITEM: str\nCREATE_TABLE: str\nUPDATE_TABLE: str\nDELETE_TABLE: str\nLIST_TABLES: str\nUPDATE_ITEM: str\nDELETE_ITEM: str\nGET_ITEM: str\nPUT_ITEM: str\nQUERY: str\nSCAN: str\nGLOBAL_SECONDARY_INDEX_UPDATES: str\nRETURN_ITEM_COLL_METRICS: st...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\constants.pyi
constants.pyi
Other
3,038
0.85
0
0
node-utils
505
2024-10-10T03:16:13.280027
MIT
false
ef8ae78653c006491a42637e386b7566
from typing import Any, Optional, Text\n\nclass PynamoDBException(Exception):\n msg: str\n cause: Any\n def __init__(self, msg: Optional[Text] = ..., cause: Optional[Exception] = ...) -> None: ...\n\nclass PynamoDBConnectionError(PynamoDBException): ...\nclass DeleteError(PynamoDBConnectionError): ...\nclass Q...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\exceptions.pyi
exceptions.pyi
Other
887
0.85
0.652174
0
vue-tools
798
2024-11-19T08:16:11.701905
Apache-2.0
false
51d87198baab09a2e2ef1c9475b1e06a
from typing import Any, Optional\n\nclass IndexMeta(type):\n def __init__(self, name, bases, attrs) -> None: ...\n\nclass Index(metaclass=IndexMeta):\n Meta: Any\n def __init__(self) -> None: ...\n @classmethod\n def count(cls, hash_key, consistent_read: bool = ..., **filters) -> int: ...\n @classmeth...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\indexes.pyi
indexes.pyi
Other
1,052
0.85
0.333333
0.03125
node-utils
291
2024-11-18T10:22:33.431155
GPL-3.0
false
997c589e4f001ae378596b5eede2340a
from typing import Any, Dict, Generic, Iterable, Iterator, List, Optional, Sequence, Text, Tuple, Type, TypeVar, Union\n\nfrom .attributes import Attribute\nfrom .exceptions import DoesNotExist as DoesNotExist\n\nlog: Any\n\nclass DefaultMeta: ...\n\nclass ResultSet(object):\n results: Any\n operation: Any\n a...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\models.pyi
models.pyi
Other
5,702
0.95
0.27673
0.046667
python-kit
320
2024-03-11T03:24:40.781218
MIT
false
fe41e04208a9e60f08139a396d8942ac
from typing import Any\n\nlog: Any\ndefault_settings_dict: Any\nOVERRIDE_SETTINGS_PATH: Any\noverride_settings: Any\n\ndef get_settings_value(key): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\settings.pyi
settings.pyi
Other
145
0.85
0.125
0
vue-tools
98
2025-05-28T04:34:17.353578
Apache-2.0
false
f4fc4f2cf0029c165163f9e2d3650f1f
from typing import Any, Optional\n\nlog: Any\n\nclass ThrottleBase:\n capacity: Any\n window: Any\n records: Any\n sleep_interval: Any\n def __init__(self, capacity, window: int = ..., initial_sleep: Optional[Any] = ...) -> None: ...\n def add_record(self, record): ...\n def throttle(self): ...\n\n...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\throttle.pyi
throttle.pyi
Other
472
0.85
0.473684
0
vue-tools
847
2025-03-26T03:29:47.773416
BSD-3-Clause
false
40e67c3325b24d3ad71cad7fd5a7ab0e
STRING: str\nNUMBER: str\nBINARY: str\nHASH: str\nRANGE: str\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\types.pyi
types.pyi
Other
57
0.5
0
0
vue-tools
803
2023-09-25T08:50:03.319081
GPL-3.0
false
2e3447ab1706a2431a67797ab5b65bd5
__license__: str\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\__init__.pyi
__init__.pyi
Other
17
0.5
0
0
node-utils
57
2024-05-01T02:43:06.140192
GPL-3.0
false
2a3744172227686ab19bb390a2fcb52c
from typing import Any, Dict, Optional, Text\n\nBOTOCORE_EXCEPTIONS: Any\nlog: Any\n\nclass MetaTable:\n data: Dict[Any, Any]\n def __init__(self, data: Dict[Any, Any]) -> None: ...\n @property\n def range_keyname(self) -> Optional[Text]: ...\n @property\n def hash_keyname(self) -> Text: ...\n def ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\connection\base.pyi
base.pyi
Other
6,089
0.85
0.253165
0
react-lib
930
2025-02-26T22:20:38.038718
GPL-3.0
false
9d5448ef1d05e5cb7560d26943635700
from typing import Any, Optional\n\nclass TableConnection:\n table_name: Any\n connection: Any\n def __init__(\n self,\n table_name,\n region: Optional[Any] = ...,\n host: Optional[Any] = ...,\n session_cls: Optional[Any] = ...,\n request_timeout_seconds: Optional[Any]...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\connection\table.pyi
table.pyi
Other
3,825
0.85
0.12963
0
vue-tools
208
2025-04-01T10:33:43.846481
MIT
false
9ee32afaa3414f99183bfb7f172cda01
from typing import Text\n\ndef pythonic(var_name: Text) -> Text: ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\connection\util.pyi
util.pyi
Other
67
0.65
0.333333
0
node-utils
366
2024-10-26T05:55:53.539938
Apache-2.0
false
8dd97317a6b2c6c5a32062ecd6e95372
from pynamodb.connection.base import Connection as Connection\nfrom pynamodb.connection.table import TableConnection as TableConnection\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pynamodb\connection\__init__.pyi
__init__.pyi
Other
135
0.85
0
0
vue-tools
123
2023-07-25T10:19:11.481361
Apache-2.0
false
d996cada26678f5ad07ed9e8ee45ecc3
import datetime\nfrom typing import List, Mapping, Optional, Set, Union\n\nclass BaseTzInfo(datetime.tzinfo):\n zone: str = ...\n def localize(self, dt: datetime.datetime, is_dst: Optional[bool] = ...) -> datetime.datetime: ...\n def normalize(self, dt: datetime.datetime) -> datetime.datetime: ...\n\nclass _UT...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pytz\__init__.pyi
__init__.pyi
Other
1,892
0.85
0.488372
0
awesome-app
836
2023-12-08T01:21:16.379902
MIT
false
19e4c8483b5126f65d0af78f98d47939
from datetime import datetime\nfrom typing import Any, List\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n\nclass Event:\n createdTime: datetime\n\nclass EventFilterSpec:\n class ByTime:\n def __init__(self, beginTime: datetime): ...\n time: EventFilterSpec.ByTime\n\nclass EventManager:\n ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pyVmomi\vim\event.pyi
event.pyi
Other
395
0.95
0.4375
0
react-lib
422
2025-06-21T13:14:58.060678
GPL-3.0
false
15a0b5efe5d6d52add3b50338c2bb9c7
from typing import Any\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n\nclass InvalidName(Exception): ...\nclass RestrictedByAdministrator(Exception): ...\nclass NoPermission(Exception): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pyVmomi\vim\fault.pyi
fault.pyi
Other
195
0.95
0.571429
0
node-utils
578
2024-10-15T01:56:36.152846
MIT
false
dd75aef651f6d76bb3f376229e5a2949
from typing import Any, List\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n\nclass OptionManager:\n def QueryOptions(self, name: str) -> List[OptionValue]: ...\n\nclass OptionValue:\n value: Any\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pyVmomi\vim\option.pyi
option.pyi
Other
204
0.95
0.444444
0
node-utils
847
2024-03-12T00:57:32.908892
GPL-3.0
false
15068aa597c3de26e10b2dbec2d2d1d4
from typing import Any, List, Type\n\nfrom pyVmomi.vim import ManagedEntity\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n\nclass ContainerView:\n def Destroy(self) -> None: ...\n\nclass ViewManager:\n # Doc says the `type` parameter of CreateContainerView is a `List[str]`,\n # but in practice it se...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pyVmomi\vim\view.pyi
view.pyi
Other
586
0.95
0.333333
0.272727
vue-tools
596
2023-07-21T23:13:38.662466
GPL-3.0
false
873398e4453e9f5d5b62e598f75723d4
from datetime import datetime\nfrom enum import Enum\nfrom typing import Any, List\n\nfrom ..vmodl.query import PropertyCollector\nfrom .event import EventManager\nfrom .option import OptionManager\nfrom .view import ViewManager\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n\nclass ManagedObject: ...\n\nclas...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pyVmomi\vim\__init__.pyi
__init__.pyi
Other
2,197
0.95
0.405797
0
node-utils
623
2024-05-08T18:47:45.005527
BSD-3-Clause
false
e90fe0f101f83f8c620757cc6c3b7264
from typing import Any\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n\nclass InvalidArgument(Exception): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pyVmomi\vmodl\fault.pyi
fault.pyi
Other
116
0.95
0.4
0
react-lib
144
2024-07-29T19:05:59.912072
Apache-2.0
false
106805fcde9fd3671702b931e3cef9c2
from typing import Any, List, Optional, Type\n\nfrom pyVmomi.vim import ManagedEntity\nfrom pyVmomi.vim.view import ContainerView\nfrom pyVmomi.vmodl import DynamicProperty\n\nclass PropertyCollector:\n class PropertySpec:\n all: bool\n type: Type[ManagedEntity]\n pathSet: List[str]\n class T...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pyVmomi\vmodl\query.pyi
query.pyi
Other
1,430
0.95
0.368421
0
react-lib
742
2024-10-01T04:09:08.012788
BSD-3-Clause
false
888ac6f2a2ace8bfd69b250e12e6a0f9
from typing import Any\n\nclass DynamicProperty:\n name: str\n val: Any\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pyVmomi\vmodl\__init__.pyi
__init__.pyi
Other
74
0.65
0.2
0
vue-tools
125
2024-12-05T20:00:03.773137
BSD-3-Clause
false
d60e606d961c8ffc53576a239eafbf59
from datetime import timedelta\nfrom typing import (\n Any,\n Callable,\n Dict,\n Generic,\n Iterable,\n Iterator,\n List,\n Mapping,\n Optional,\n Sequence,\n Set,\n Text,\n Tuple,\n TypeVar,\n Union,\n overload,\n)\nfrom typing_extensions import Literal\n\nfrom .connect...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\redis\client.pyi
client.pyi
Other
26,034
0.95
0.470774
0.003231
react-lib
459
2024-09-16T11:40:30.731420
Apache-2.0
false
e1bf2f45a1bfc4af17db1aea571f72c9
from typing import Any, List, Mapping, Optional, Text, Tuple, Type, Union\n\nssl_available: Any\nhiredis_version: Any\nHIREDIS_SUPPORTS_CALLABLE_ERRORS: Any\nHIREDIS_SUPPORTS_BYTE_BUFFER: Any\nmsg: Any\nHIREDIS_USE_BYTE_BUFFER: Any\nSYM_STAR: Any\nSYM_DOLLAR: Any\nSYM_CRLF: Any\nSYM_EMPTY: Any\nSERVER_CLOSED_CONNECTION...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\redis\connection.pyi
connection.pyi
Other
5,595
0.85
0.384181
0
vue-tools
544
2025-04-13T03:22:00.067793
BSD-3-Clause
false
d1416435cc42361895b6e368808932f5
class RedisError(Exception): ...\n\ndef __unicode__(self): ...\n\nclass AuthenticationError(RedisError): ...\nclass ConnectionError(RedisError): ...\nclass TimeoutError(RedisError): ...\nclass BusyLoadingError(ConnectionError): ...\nclass InvalidResponse(RedisError): ...\nclass ResponseError(RedisError): ...\nclass Dat...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\redis\exceptions.pyi
exceptions.pyi
Other
569
0.85
0.882353
0
vue-tools
53
2024-11-27T10:48:01.419492
BSD-3-Clause
false
cd3e26ac1789f485857117af58d4fc9f
from typing import Any\n\nHIREDIS_AVAILABLE: Any\n\ndef from_url(url, db=..., **kwargs): ...\ndef pipeline(redis_obj): ...\n\nclass dummy: ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\redis\utils.pyi
utils.pyi
Other
136
0.85
0.375
0
python-kit
165
2025-03-12T19:54:50.271099
MIT
false
90fe0b3fe8e7046dcebba5775451cf99
from . import client, connection, exceptions, utils\n\nRedis = client.Redis\nStrictRedis = client.StrictRedis\nBlockingConnectionPool = connection.BlockingConnectionPool\nConnectionPool = connection.ConnectionPool\nConnection = connection.Connection\nSSLConnection = connection.SSLConnection\nUnixDomainSocketConnection ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\redis\__init__.pyi
__init__.pyi
Other
829
0.85
0
0
vue-tools
541
2024-09-22T23:26:33.027509
MIT
false
de3933e0d0f038451d7e96922358d281
from typing import Any, Container, Mapping, Optional, Text, Tuple, Union\n\nfrom . import cookies, exceptions, models, structures, utils\nfrom .packages.urllib3 import exceptions as urllib3_exceptions, poolmanager, response\nfrom .packages.urllib3.util import retry\n\nPreparedRequest = models.PreparedRequest\nResponse ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\adapters.pyi
adapters.pyi
Other
2,925
0.85
0.219178
0
python-kit
125
2023-12-08T08:23:55.357476
GPL-3.0
false
dcf7802394bbb0bdd6123d24e44bf025
from _typeshed import SupportsItems\nfrom typing import Iterable, Optional, Text, Tuple, Union\n\nfrom .models import Response\nfrom .sessions import _Data\n\n_ParamsMappingKeyType = Union[Text, bytes, int, float]\n_ParamsMappingValueType = Union[Text, bytes, int, float, Iterable[Union[Text, bytes, int, float]], None]\...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\api.pyi
api.pyi
Other
1,216
0.85
0.285714
0.04
vue-tools
275
2025-05-07T00:01:27.544192
MIT
false
5f13fec309db3de0493615b5e6120fcb
from typing import Any, Text, Union\n\nfrom . import cookies, models, status_codes, utils\n\nextract_cookies_to_jar = cookies.extract_cookies_to_jar\nparse_dict_header = utils.parse_dict_header\nto_native_string = utils.to_native_string\n\nCONTENT_TYPE_FORM_URLENCODED: Any\nCONTENT_TYPE_MULTI_PART: Any\n\ndef _basic_au...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\auth.pyi
auth.pyi
Other
1,148
0.85
0.384615
0
node-utils
466
2023-12-08T04:20:48.407059
BSD-3-Clause
false
6e1c258c4aae61c58d25dd1f311e8b2d
import collections\n\nOrderedDict = collections.OrderedDict\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\compat.pyi
compat.pyi
Other
58
0.65
0
0
vue-tools
425
2025-05-07T12:43:47.076903
BSD-3-Clause
false
ca4f174eee5c6172a8d8173b67a0b799
import sys\nfrom typing import Any, MutableMapping\n\nif sys.version_info < (3, 0):\n from cookielib import CookieJar\nelse:\n from http.cookiejar import CookieJar\n\nclass MockRequest:\n type: Any\n def __init__(self, request) -> None: ...\n def get_type(self): ...\n def get_host(self): ...\n def ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\cookies.pyi
cookies.pyi
Other
2,033
0.85
0.75
0
awesome-app
347
2025-03-15T04:32:31.815685
MIT
false
01a80f36a418e42945f597b312c49447
from typing import Any\n\nfrom .packages.urllib3.exceptions import HTTPError as BaseHTTPError\n\nclass RequestException(IOError):\n response: Any\n request: Any\n def __init__(self, *args, **kwargs) -> None: ...\n\nclass HTTPError(RequestException): ...\nclass ConnectionError(RequestException): ...\nclass Prox...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\exceptions.pyi
exceptions.pyi
Other
1,259
0.85
0.774194
0
react-lib
624
2024-12-11T23:39:11.767995
BSD-3-Clause
false
b1ed04cc7785ee93342aa6996f58b3a5
from typing import Any\n\nHOOKS: Any\n\ndef default_hooks(): ...\ndef dispatch_hook(key, hooks, hook_data, **kwargs): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\hooks.pyi
hooks.pyi
Other
117
0.85
0.333333
0
node-utils
979
2025-01-01T20:50:56.261038
GPL-3.0
false
3b1f55651da35981cf06e5cf06f5dc79
import datetime\nfrom typing import Any, Dict, Iterator, List, Optional, Text, Union\n\nfrom . import auth, cookies, exceptions, hooks, status_codes, structures, utils\nfrom .cookies import RequestsCookieJar\nfrom .packages.urllib3 import exceptions as urllib3_exceptions, fields, filepost, util\n\ndefault_hooks = hooks...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\models.pyi
models.pyi
Other
4,578
0.95
0.310078
0
vue-tools
655
2023-10-11T11:53:24.169881
BSD-3-Clause
false
7a1977988ecaf375f34b7cabe56a6c34
from typing import IO, Any, Callable, Iterable, List, Mapping, MutableMapping, Optional, Text, Tuple, Union\n\nfrom . import adapters, auth as _auth, compat, cookies, exceptions, hooks, models, status_codes, structures, utils\nfrom .models import Response\nfrom .packages.urllib3 import _collections\n\nBaseAdapter = ada...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\sessions.pyi
sessions.pyi
Other
4,727
0.85
0.247525
0
vue-tools
980
2025-02-19T09:01:38.939115
Apache-2.0
false
4be9b897c011c35ebbdc8e065268d58c
from typing import Any\n\ncodes: Any\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\status_codes.pyi
status_codes.pyi
Other
35
0.65
0
0
awesome-app
679
2024-01-28T00:11:01.407346
GPL-3.0
false
31d5ef501e38fcb235df8d728c50522a
from typing import Any, Dict, Generic, Iterable, Iterator, Mapping, MutableMapping, Optional, Tuple, TypeVar, Union\n\n_VT = TypeVar("_VT")\n\nclass CaseInsensitiveDict(MutableMapping[str, _VT], Generic[_VT]):\n def __init__(self, data: Optional[Union[Mapping[str, _VT], Iterable[Tuple[str, _VT]]]] = ..., **kwargs: _...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\structures.pyi
structures.pyi
Other
968
0.95
0.7
0
vue-tools
318
2024-07-10T08:57:49.878517
GPL-3.0
false
4fed11c3f6ca8eea15d9e7cc67ca0d9d
from typing import Any, AnyStr, Dict, Iterable, Mapping, Optional, Text, Tuple\n\nfrom . import compat, cookies, exceptions, structures\n\nOrderedDict = compat.OrderedDict\nRequestsCookieJar = cookies.RequestsCookieJar\ncookiejar_from_dict = cookies.cookiejar_from_dict\nCaseInsensitiveDict = structures.CaseInsensitiveD...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\utils.pyi
utils.pyi
Other
1,989
0.85
0.685185
0
python-kit
214
2024-11-01T20:27:47.508403
GPL-3.0
false
a3fe5f77d961b06361444c8c1478e3c5
import logging\nfrom typing import Any, Text\n\nfrom .api import (\n delete as delete,\n get as get,\n head as head,\n options as options,\n patch as patch,\n post as post,\n put as put,\n request as request,\n)\nfrom .exceptions import (\n ConnectionError as ConnectionError,\n HTTPError a...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\__init__.pyi
__init__.pyi
Other
928
0.85
0.083333
0
node-utils
625
2024-10-16T19:17:13.691784
GPL-3.0
false
21c42a7235624b95cb1bd3dc4d4ef7a7
class VendorAlias:\n def __init__(self, package_names) -> None: ...\n def find_module(self, fullname, path=...): ...\n def load_module(self, name): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\__init__.pyi
__init__.pyi
Other
158
0.85
1
0
vue-tools
918
2024-11-12T14:54:40.040547
Apache-2.0
false
a36078317893bff0a3ea766cd48d22fe
import ssl\nimport sys\nfrom typing import Any\n\nfrom . import exceptions, util\nfrom .packages import ssl_match_hostname\nfrom .util import ssl_\n\nif sys.version_info < (3, 0):\n from httplib import HTTPConnection as _HTTPConnection, HTTPException as HTTPException\n class ConnectionError(Exception): ...\n\nels...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\connection.pyi
connection.pyi
Other
1,907
0.85
0.184615
0
vue-tools
308
2024-07-29T05:07:46.263827
MIT
false
0de3c75b057ef3a09683ec30e5e71633
from typing import Any\n\nfrom . import connection, exceptions, request, response\nfrom .connection import BaseSSLError as BaseSSLError, ConnectionError as ConnectionError, HTTPException as HTTPException\nfrom .packages import ssl_match_hostname\nfrom .util import connection as _connection, retry, timeout, url\n\nClose...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\connectionpool.pyi
connectionpool.pyi
Other
3,170
0.85
0.107438
0.026316
vue-tools
866
2025-07-01T06:15:27.716799
Apache-2.0
false
d0477fcae3b88f7240cdf40dbfd60370
from typing import Any\n\nclass HTTPError(Exception): ...\nclass HTTPWarning(Warning): ...\n\nclass PoolError(HTTPError):\n pool: Any\n def __init__(self, pool, message) -> None: ...\n def __reduce__(self): ...\n\nclass RequestError(PoolError):\n url: Any\n def __init__(self, pool, url, message) -> None:...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\exceptions.pyi
exceptions.pyi
Other
1,413
0.85
0.6
0
vue-tools
845
2024-07-09T22:02:02.868273
BSD-3-Clause
false
4ee69e25acc12daab566429cc8053d68
from typing import Any\n\ndef guess_content_type(filename, default=...): ...\ndef format_header_param(name, value): ...\n\nclass RequestField:\n data: Any\n headers: Any\n def __init__(self, name, data, filename=..., headers=...) -> None: ...\n @classmethod\n def from_tuples(cls, fieldname, value): ...\n...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\fields.pyi
fields.pyi
Other
442
0.85
0.538462
0
awesome-app
657
2025-01-28T14:51:34.096724
Apache-2.0
false
ee94268c4972b2a3f2ce146918b1a77a
from typing import Any\n\nfrom . import fields\n\nRequestField = fields.RequestField\n\nwriter: Any\n\ndef choose_boundary(): ...\ndef iter_field_objects(fields): ...\ndef iter_fields(fields): ...\ndef encode_multipart_formdata(fields, boundary=...): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\filepost.pyi
filepost.pyi
Other
244
0.85
0.333333
0
vue-tools
361
2025-03-30T12:20:18.663764
BSD-3-Clause
false
abd2dfc8f87e986c39196c627d5227b9
from typing import Any\n\nfrom .request import RequestMethods\n\nclass PoolManager(RequestMethods):\n proxy: Any\n connection_pool_kw: Any\n pools: Any\n def __init__(self, num_pools=..., headers=..., **connection_pool_kw) -> None: ...\n def __enter__(self): ...\n def __exit__(self, exc_type, exc_val,...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\poolmanager.pyi
poolmanager.pyi
Other
1,309
0.95
0.607143
0.166667
awesome-app
580
2024-04-07T20:26:49.059852
Apache-2.0
false
2b27e7687ee29c9c57a6b6ff5de7c0ae
from typing import Any\n\nclass RequestMethods:\n headers: Any\n def __init__(self, headers=...) -> None: ...\n def urlopen(self, method, url, body=..., headers=..., encode_multipart=..., multipart_boundary=..., **kw): ...\n def request(self, method, url, fields=..., headers=..., **urlopen_kw): ...\n def...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\request.pyi
request.pyi
Other
534
0.85
0.545455
0
python-kit
223
2024-08-03T13:33:59.555037
Apache-2.0
false
c6ae4eca68720c0041ba761769d5fb93
import io\nfrom typing import Any\n\nfrom . import _collections, exceptions\nfrom .connection import BaseSSLError as BaseSSLError, HTTPException as HTTPException\nfrom .util import response\n\nHTTPHeaderDict = _collections.HTTPHeaderDict\nProtocolError = exceptions.ProtocolError\nDecodeError = exceptions.DecodeError\nR...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\response.pyi
response.pyi
Other
1,788
0.95
0.378788
0
python-kit
703
2024-08-02T19:02:36.851004
MIT
false
f2c60b0286f60eb145e5e7f48fb07c0c
from collections import MutableMapping\nfrom typing import Any, NoReturn, TypeVar\n\n_KT = TypeVar("_KT")\n_VT = TypeVar("_VT")\n\nclass RLock:\n def __enter__(self): ...\n def __exit__(self, exc_type, exc_value, traceback): ...\n\nclass RecentlyUsedContainer(MutableMapping[_KT, _VT]):\n ContainerCls: Any\n ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\_collections.pyi
_collections.pyi
Other
1,535
0.85
0.615385
0
vue-tools
830
2024-10-06T17:16:00.825059
MIT
false
addd4a9626ba8bb01f3479e605c244e5
import logging\nfrom typing import Any\n\nfrom . import connectionpool, filepost, poolmanager, response\nfrom .util import request as _request, retry, timeout, url\n\n__license__: Any\n\nHTTPConnectionPool = connectionpool.HTTPConnectionPool\nHTTPSConnectionPool = connectionpool.HTTPSConnectionPool\nconnection_from_url...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\__init__.pyi
__init__.pyi
Other
825
0.85
0.153846
0
vue-tools
391
2023-11-23T13:33:48.016127
GPL-3.0
false
551749b4f53b77b048979de83847d3c8
class CertificateError(ValueError): ...\n\ndef match_hostname(cert, hostname): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\packages\ssl_match_hostname\_implementation.pyi
_implementation.pyi
Other
81
0.65
0.666667
0
awesome-app
519
2025-01-25T06:34:39.915373
GPL-3.0
false
229d0ee64e9d0c7ee0143f78111a11e8
import ssl\n\nCertificateError = ssl.CertificateError\nmatch_hostname = ssl.match_hostname\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\packages\ssl_match_hostname\__init__.pyi
__init__.pyi
Other
88
0.65
0
0
awesome-app
623
2025-04-08T10:30:25.659541
GPL-3.0
false
35774064aea826c84f17652721a6ae9e
from typing import Any\n\npoll: Any\nselect: Any\nHAS_IPV6: bool\n\ndef is_connection_dropped(conn): ...\ndef create_connection(address, timeout=..., source_address=..., socket_options=...): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\util\connection.pyi
connection.pyi
Other
188
0.85
0.25
0
python-kit
435
2023-11-04T20:56:42.388045
MIT
false
986cdd65c3c68fe9637fcf60e4173990
from typing import Any\n\n# from ..packages import six\n\n# b = six.b\n\nACCEPT_ENCODING: Any\n\ndef make_headers(\n keep_alive=..., accept_encoding=..., user_agent=..., basic_auth=..., proxy_basic_auth=..., disable_cache=...\n): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\util\request.pyi
request.pyi
Other
227
0.95
0.090909
0.285714
react-lib
397
2025-03-04T01:02:55.577298
BSD-3-Clause
false
2f41e4ec5b7faae672fd9d3fa38ed451
def is_fp_closed(obj): ...\n
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\util\response.pyi
response.pyi
Other
27
0.65
1
0
node-utils
513
2023-08-10T00:35:07.557040
Apache-2.0
false
018251aca447f29ea4842411441dbfce
from typing import Any\n\nfrom .. import exceptions\n\nConnectTimeoutError = exceptions.ConnectTimeoutError\nMaxRetryError = exceptions.MaxRetryError\nProtocolError = exceptions.ProtocolError\nReadTimeoutError = exceptions.ReadTimeoutError\nResponseError = exceptions.ResponseError\n\nlog: Any\n\nclass Retry:\n DEFAU...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\util\retry.pyi
retry.pyi
Other
1,161
0.85
0.209302
0
python-kit
12
2024-05-06T09:18:47.120129
GPL-3.0
false
5500538729d28797c5ad547ff21fd628
import ssl\nfrom typing import Any\n\nfrom .. import exceptions\n\nSSLError = exceptions.SSLError\nInsecurePlatformWarning = exceptions.InsecurePlatformWarning\nSSLContext = ssl.SSLContext\n\nHAS_SNI: Any\ncreate_default_context: Any\nOP_NO_SSLv2: Any\nOP_NO_SSLv3: Any\nOP_NO_COMPRESSION: Any\n\ndef assert_fingerprint(...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\util\ssl_.pyi
ssl_.pyi
Other
691
0.85
0.166667
0
vue-tools
399
2023-12-05T03:38:19.147585
MIT
false
337b0bc515577ddb512f10775a53c1cf
from typing import Any\n\nfrom .. import exceptions\n\nTimeoutStateError = exceptions.TimeoutStateError\n\ndef current_time(): ...\n\nclass Timeout:\n DEFAULT_TIMEOUT: Any\n total: Any\n def __init__(self, total=..., connect=..., read=...) -> None: ...\n @classmethod\n def from_float(cls, timeout): ...\n...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\util\timeout.pyi
timeout.pyi
Other
499
0.85
0.428571
0
awesome-app
997
2025-04-14T21:12:11.013752
Apache-2.0
false
9dc2086b2791c84451a426062c842f4c
from typing import Any\n\nfrom .. import exceptions\n\nLocationParseError = exceptions.LocationParseError\n\nurl_attrs: Any\n\nclass Url:\n slots: Any\n def __new__(cls, scheme=..., auth=..., host=..., port=..., path=..., query=..., fragment=...): ...\n @property\n def hostname(self): ...\n @property\n ...
.venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\requests\packages\urllib3\util\url.pyi
url.pyi
Other
492
0.85
0.391304
0
vue-tools
716
2024-02-26T15:11:57.613792
Apache-2.0
false
0b276ac99ba18ef2286fb073df22e766