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 types import TracebackType\nfrom typing import IO, Any, List, NamedTuple, Optional, Text, Tuple, Type, Union, overload\nfrom typing_extensions import Literal\n\nclass Error(Exception): ...\n\nclass _aifc_params(NamedTuple):\n nchannels: int\n sampwidth: int\n framerate: int\n nframes: int\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\aifc.pyi | aifc.pyi | Other | 3,393 | 0.95 | 0.681818 | 0 | vue-tools | 212 | 2025-06-17T02:54:52.545404 | GPL-3.0 | false | be377bee94801244037735657528f465 |
import sys\n\nif sys.version_info >= (3, 0):\n def geohash(latitude: float, longitude: float, datedow: bytes) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\antigravity.pyi | antigravity.pyi | Other | 123 | 0.85 | 0.5 | 0 | react-lib | 669 | 2025-04-15T00:21:07.073797 | GPL-3.0 | false | 06b98ebb09eeb78806854c67c2f2ed2f |
import sys\nfrom typing import (\n IO,\n Any,\n Callable,\n Dict,\n Generator,\n Iterable,\n List,\n NoReturn,\n Optional,\n Pattern,\n Protocol,\n Sequence,\n Text,\n Tuple,\n Type,\n TypeVar,\n Union,\n overload,\n)\n\n_T = TypeVar("_T")\n_ActionT = TypeVar("_Acti... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\argparse.pyi | argparse.pyi | Other | 18,335 | 0.95 | 0.303901 | 0.06181 | react-lib | 808 | 2023-09-17T23:42:46.566800 | MIT | false | 2de54e504d07cb613cc9b43a86bf5351 |
import sys\nfrom typing import Any, BinaryIO, Generic, Iterable, List, MutableSequence, Text, Tuple, TypeVar, Union, overload\nfrom typing_extensions import Literal\n\n_IntTypeCode = Literal["b", "B", "h", "H", "i", "I", "l", "L", "q", "Q"]\n_FloatTypeCode = Literal["f", "d"]\n_UnicodeTypeCode = Literal["u"]\n_TypeCode... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\array.pyi | array.pyi | Other | 3,489 | 0.95 | 0.675325 | 0 | node-utils | 320 | 2023-07-30T19:25:49.252266 | GPL-3.0 | false | 365da528e3b6df2d91f4f21995f513df |
import asyncore\nimport socket\nimport sys\nfrom abc import abstractmethod\nfrom typing import Optional, Sequence, Tuple, Union\n\nclass simple_producer:\n def __init__(self, data: bytes, buffer_size: int = ...) -> None: ...\n def more(self) -> bytes: ...\n\nclass async_chat(asyncore.dispatcher):\n ac_in_buffe... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\asynchat.pyi | asynchat.pyi | Other | 1,555 | 0.85 | 0.692308 | 0 | awesome-app | 113 | 2024-06-10T23:18:46.891350 | MIT | false | 23ba72df7e592eeb5684bb62abcd6373 |
import sys\nfrom _typeshed import FileDescriptorLike\nfrom socket import SocketType\nfrom typing import Any, Dict, Optional, Tuple, Union, overload\n\n# cyclic dependence with asynchat\n_maptype = Dict[int, Any]\n\nsocket_map: _maptype = ... # Undocumented\n\nclass ExitNow(Exception): ...\n\ndef read(obj: Any) -> None... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\asyncore.pyi | asyncore.pyi | Other | 5,534 | 0.95 | 0.647059 | 0.111111 | react-lib | 437 | 2024-12-19T08:21:32.456732 | Apache-2.0 | false | 3e6cd1328b2d2a416ec151211bc76d2f |
from typing import Optional, Tuple\n\nAdpcmState = Tuple[int, int]\nRatecvState = Tuple[int, Tuple[Tuple[int, int], ...]]\n\nclass error(Exception): ...\n\ndef add(__fragment1: bytes, __fragment2: bytes, __width: int) -> bytes: ...\ndef adpcm2lin(__fragment: bytes, __width: int, __state: Optional[AdpcmState]) -> Tuple[... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\audioop.pyi | audioop.pyi | Other | 2,119 | 0.85 | 0.642857 | 0 | react-lib | 256 | 2025-04-24T00:03:05.424335 | BSD-3-Clause | false | 4fcb4099b7b87e2d9cab61a6daed9765 |
import sys\nfrom typing import IO, Optional, Union\n\nif sys.version_info < (3,):\n _encodable = Union[bytes, unicode]\n _decodable = Union[bytes, unicode]\nelse:\n _encodable = bytes\n _decodable = Union[bytes, str]\n\ndef b64encode(s: _encodable, altchars: Optional[bytes] = ...) -> bytes: ...\ndef b64deco... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\base64.pyi | base64.pyi | Other | 1,614 | 0.85 | 0.648649 | 0 | python-kit | 504 | 2023-12-18T07:26:43.126778 | GPL-3.0 | false | 929492210110f3d3b1514fbdacffd754 |
from types import CodeType, FrameType, TracebackType\nfrom typing import IO, Any, Callable, Dict, Iterable, List, Mapping, Optional, Set, SupportsInt, Tuple, Type, TypeVar, Union\n\n_T = TypeVar("_T")\n_TraceDispatch = Callable[[FrameType, str, Any], Any] # TODO: Recursive type\n_ExcInfo = Tuple[Type[BaseException], B... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\bdb.pyi | bdb.pyi | Other | 4,644 | 0.95 | 0.540816 | 0 | awesome-app | 740 | 2023-12-09T20:27:14.329155 | MIT | false | bb1b3506997b8f696b12a5694d6b85c2 |
import sys\nfrom typing import Text, Union\n\nif sys.version_info < (3,):\n # Python 2 accepts unicode ascii pretty much everywhere.\n _Bytes = Text\n _Ascii = Text\nelse:\n # But since Python 3.3 ASCII-only unicode strings are accepted by the\n # a2b_* functions.\n _Bytes = bytes\n _Ascii = Union[... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\binascii.pyi | binascii.pyi | Other | 1,552 | 0.95 | 0.5 | 0.078947 | node-utils | 195 | 2025-05-16T00:41:43.601451 | MIT | false | 521ba35d270f9ce99853f9deb48a49f9 |
from typing import IO, Any, Tuple, Union\n\nclass Error(Exception): ...\n\nREASONABLY_LARGE: int\nLINELEN: int\nRUNCHAR: bytes\n\nclass FInfo:\n def __init__(self) -> None: ...\n Type: str\n Creator: str\n Flags: int\n\n_FileInfoTuple = Tuple[str, FInfo, int, int]\n_FileHandleUnion = Union[str, IO[bytes]]\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\binhex.pyi | binhex.pyi | Other | 1,147 | 0.85 | 0.547619 | 0 | vue-tools | 498 | 2025-03-08T06:09:36.834886 | GPL-3.0 | false | 8e2502b3958a8251712ca3d4e0a741cd |
from _bisect import *\n\nbisect = bisect_right\ninsort = insort_right\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\bisect.pyi | bisect.pyi | Other | 67 | 0.65 | 0 | 0 | awesome-app | 911 | 2024-08-24T10:37:13.543061 | GPL-3.0 | false | 80959ce036102548d6e712db1d926d4a |
import io\nimport sys\nfrom _typeshed import AnyPath\nfrom typing import IO, Any, Optional, TextIO, TypeVar, Union, overload\nfrom typing_extensions import Literal\n\n_PathOrFile = Union[AnyPath, IO[bytes]]\n_T = TypeVar("_T")\n\ndef compress(data: bytes, compresslevel: int = ...) -> bytes: ...\ndef decompress(data: by... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\bz2.pyi | bz2.pyi | Other | 2,267 | 0.85 | 0.342857 | 0 | react-lib | 641 | 2024-12-06T19:06:34.824255 | GPL-3.0 | false | 1311156f1f0683ff4a395417c80c0699 |
import datetime\nimport sys\nfrom time import struct_time\nfrom typing import Any, Iterable, List, Optional, Sequence, Tuple, Union\n\n_LocaleType = Tuple[Optional[str], Optional[str]]\n\nclass IllegalMonthError(ValueError):\n def __init__(self, month: int) -> None: ...\n def __str__(self) -> str: ...\n\nclass Il... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\calendar.pyi | calendar.pyi | Other | 5,773 | 0.95 | 0.634146 | 0.028302 | react-lib | 934 | 2025-05-28T00:59:45.767044 | BSD-3-Clause | false | 8c6bdbbc4c5f0cfec99eace82e967bea |
import sys\nfrom _typeshed import SupportsGetItem, SupportsItemAccess\nfrom builtins import type as _type\nfrom typing import IO, Any, AnyStr, Dict, Iterable, Iterator, List, Mapping, Optional, Protocol, Tuple, TypeVar, Union\n\n_T = TypeVar("_T", bound=FieldStorage)\n\ndef parse(\n fp: Optional[IO[Any]] = ...,\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\cgi.pyi | cgi.pyi | Other | 6,016 | 0.95 | 0.37037 | 0.04698 | react-lib | 571 | 2023-11-24T09:46:19.200796 | BSD-3-Clause | false | 8d43be82253fd2edc4a697f5ff4d6813 |
from _typeshed import AnyPath\nfrom types import FrameType, TracebackType\nfrom typing import IO, Any, Callable, Dict, List, Optional, Tuple, Type\n\n_ExcInfo = Tuple[Optional[Type[BaseException]], Optional[BaseException], Optional[TracebackType]]\n\ndef reset() -> str: ... # undocumented\ndef small(text: str) -> str:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\cgitb.pyi | cgitb.pyi | Other | 1,447 | 0.95 | 0.424242 | 0 | python-kit | 734 | 2025-01-06T23:06:53.980627 | MIT | false | af07693a86de4b83bce7c7aa8c879192 |
from typing import IO\n\nclass Chunk:\n closed: bool\n align: bool\n file: IO[bytes]\n chunkname: bytes\n chunksize: int\n size_read: int\n offset: int\n seekable: bool\n def __init__(self, file: IO[bytes], align: bool = ..., bigendian: bool = ..., inclheader: bool = ...) -> None: ...\n de... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\chunk.pyi | chunk.pyi | Other | 613 | 0.85 | 0.5 | 0 | vue-tools | 351 | 2024-12-03T18:37:30.864553 | MIT | false | cfe1f63e789faeefbc0aa9ddbefb6232 |
import sys\nfrom typing import SupportsComplex, SupportsFloat, Tuple, Union\n\ne: float\npi: float\nif sys.version_info >= (3, 6):\n inf: float\n infj: complex\n nan: float\n nanj: complex\n tau: float\n\n_C = Union[SupportsFloat, SupportsComplex]\n\ndef acos(__z: _C) -> complex: ...\ndef acosh(__z: _C) ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\cmath.pyi | cmath.pyi | Other | 1,217 | 0.85 | 0.619048 | 0 | react-lib | 575 | 2025-01-09T05:55:49.020333 | Apache-2.0 | false | 60762d3f9e41b0fe4aa6bb2381d86a92 |
from typing import IO, Any, Callable, List, Optional, Tuple\n\nclass Cmd:\n prompt: str\n identchars: str\n ruler: str\n lastcmd: str\n intro: Optional[Any]\n doc_leader: str\n doc_header: str\n misc_header: str\n undoc_header: str\n nohelp: str\n use_rawinput: bool\n stdin: IO[str]\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\cmd.pyi | cmd.pyi | Other | 1,658 | 0.95 | 0.487179 | 0.026316 | awesome-app | 876 | 2023-07-22T23:31:42.966657 | MIT | false | 9b983cf8d2123ea9098348ddc12bb03e |
import sys\nfrom types import CodeType\nfrom typing import Any, Callable, Mapping, Optional\n\nclass InteractiveInterpreter:\n def __init__(self, locals: Optional[Mapping[str, Any]] = ...) -> None: ...\n def runsource(self, source: str, filename: str = ..., symbol: str = ...) -> bool: ...\n def runcode(self, c... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\code.pyi | code.pyi | Other | 1,522 | 0.85 | 0.527778 | 0 | vue-tools | 265 | 2025-02-01T04:02:24.275613 | MIT | false | 42cbca7b3c232985405b52596a287f60 |
import sys\nimport types\nfrom abc import abstractmethod\nfrom typing import (\n IO,\n Any,\n BinaryIO,\n Callable,\n Generator,\n Iterable,\n Iterator,\n List,\n Optional,\n Protocol,\n Text,\n TextIO,\n Tuple,\n Type,\n TypeVar,\n Union,\n overload,\n)\nfrom typing_e... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\codecs.pyi | codecs.pyi | Other | 12,312 | 0.95 | 0.468439 | 0.090909 | node-utils | 677 | 2024-08-11T18:17:15.108792 | BSD-3-Clause | false | 8bddac043084ee942e10d5c53a1f8d4f |
from types import CodeType\nfrom typing import Optional\n\ndef compile_command(source: str, filename: str = ..., symbol: str = ...) -> Optional[CodeType]: ...\n\nclass Compile:\n flags: int\n def __init__(self) -> None: ...\n def __call__(self, source: str, filename: str, symbol: str) -> CodeType: ...\n\nclass... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\codeop.pyi | codeop.pyi | Other | 489 | 0.85 | 0.5 | 0 | react-lib | 986 | 2024-11-08T03:48:03.780604 | GPL-3.0 | false | 3342724b4a0c50710e5801bbd0e0be3d |
from typing import Tuple\n\ndef rgb_to_yiq(r: float, g: float, b: float) -> Tuple[float, float, float]: ...\ndef yiq_to_rgb(y: float, i: float, q: float) -> Tuple[float, float, float]: ...\ndef rgb_to_hls(r: float, g: float, b: float) -> Tuple[float, float, float]: ...\ndef hls_to_rgb(h: float, l: float, s: float) -> T... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\colorsys.pyi | colorsys.pyi | Other | 578 | 0.95 | 0.461538 | 0.090909 | node-utils | 577 | 2023-09-23T02:16:20.222119 | Apache-2.0 | false | 76d9fae168d60552faaba0195e9d58e4 |
import sys\nfrom types import TracebackType\nfrom typing import IO, Any, Callable, ContextManager, Iterable, Iterator, Optional, Type, TypeVar, overload\n\nif sys.version_info >= (3, 5):\n from typing import AsyncContextManager, AsyncIterator\n\nif sys.version_info >= (3, 6):\n AbstractContextManager = ContextMan... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\contextlib.pyi | contextlib.pyi | Other | 4,419 | 0.85 | 0.519608 | 0 | react-lib | 541 | 2024-10-22T16:18:01.707700 | MIT | false | b77f00eedf60d3e0e944be4455456f78 |
from typing import Any, Dict, Optional, TypeVar\n\n_T = TypeVar("_T")\n\n# None in CPython but non-None in Jython\nPyStringMap: Any\n\n# Note: memo and _nil are internal kwargs.\ndef deepcopy(x: _T, memo: Optional[Dict[int, Any]] = ..., _nil: Any = ...) -> _T: ...\ndef copy(x: _T) -> _T: ...\n\nclass Error(Exception): ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\copy.pyi | copy.pyi | Other | 328 | 0.95 | 0.214286 | 0.222222 | vue-tools | 363 | 2024-02-24T18:47:21.789861 | MIT | false | ba70c068d9d13b76e238251b3ee4ea6e |
import sys\nfrom _typeshed import AnyPath\nfrom typing import Any, Callable, Dict, Optional, TypeVar, Union\n\ndef run(statement: str, filename: Optional[str] = ..., sort: Union[str, int] = ...) -> None: ...\ndef runctx(\n statement: str, globals: Dict[str, Any], locals: Dict[str, Any], filename: Optional[str] = ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\cProfile.pyi | cProfile.pyi | Other | 1,239 | 0.85 | 0.571429 | 0 | node-utils | 341 | 2024-10-24T15:08:26.095325 | BSD-3-Clause | false | 816410f9d4243a24a4c38e922b12f7e9 |
import sys\nfrom typing import List, Optional, Union\n\nif sys.version_info >= (3, 3):\n class _Method: ...\n METHOD_CRYPT: _Method\n METHOD_MD5: _Method\n METHOD_SHA256: _Method\n METHOD_SHA512: _Method\n if sys.version_info >= (3, 7):\n METHOD_BLOWFISH: _Method\n\n methods: List[_Method]\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\crypt.pyi | crypt.pyi | Other | 648 | 0.85 | 0.363636 | 0 | vue-tools | 809 | 2024-12-20T07:35:00.932699 | BSD-3-Clause | false | 3d992532730950f7febdf35fd882a316 |
import sys\nfrom _csv import (\n QUOTE_ALL as QUOTE_ALL,\n QUOTE_MINIMAL as QUOTE_MINIMAL,\n QUOTE_NONE as QUOTE_NONE,\n QUOTE_NONNUMERIC as QUOTE_NONNUMERIC,\n Dialect as Dialect,\n Error as Error,\n _DialectLike,\n _reader,\n _writer,\n field_size_limit as field_size_limit,\n get_dial... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\csv.pyi | csv.pyi | Other | 2,751 | 0.85 | 0.217822 | 0.043011 | python-kit | 730 | 2024-02-16T14:40:13.574187 | GPL-3.0 | false | 9ea17152f85dcb4f35361dd95212c600 |
import sys\nfrom time import struct_time\nfrom typing import AnyStr, ClassVar, Optional, SupportsAbs, Tuple, Type, TypeVar, Union, overload\n\n_S = TypeVar("_S")\n\nif sys.version_info >= (3,):\n _Text = str\nelse:\n _Text = Union[str, unicode]\n\nMINYEAR: int\nMAXYEAR: int\n\nclass tzinfo:\n def tzname(self, ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\datetime.pyi | datetime.pyi | Other | 12,699 | 0.95 | 0.477212 | 0.013928 | vue-tools | 244 | 2024-11-11T20:33:45.932775 | BSD-3-Clause | false | 144172b3b4b1a446f3e7fb6a06f79c3e |
import numbers\nimport sys\nfrom types import TracebackType\nfrom typing import Any, Container, Dict, List, NamedTuple, Optional, Sequence, Text, Tuple, Type, TypeVar, Union, overload\n\n_Decimal = Union[Decimal, int]\n_DecimalNew = Union[Decimal, float, Text, Tuple[int, Sequence[int], int]]\nif sys.version_info >= (3,... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\decimal.pyi | decimal.pyi | Other | 17,787 | 0.95 | 0.719764 | 0.006135 | vue-tools | 144 | 2024-08-01T14:38:14.239789 | BSD-3-Clause | false | 77fb954797b4d5e62f3f9da6ddfca37b |
import sys\nfrom typing import (\n Any,\n AnyStr,\n Callable,\n Generic,\n Iterable,\n Iterator,\n List,\n NamedTuple,\n Optional,\n Sequence,\n Text,\n Tuple,\n TypeVar,\n Union,\n overload,\n)\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n_T = Ty... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\difflib.pyi | difflib.pyi | Other | 4,936 | 0.95 | 0.248366 | 0.021277 | react-lib | 297 | 2023-10-24T12:48:28.271824 | Apache-2.0 | false | 166df5418b2e6eac06b14eecd4ff4fae |
import sys\nimport types\nfrom opcode import (\n EXTENDED_ARG as EXTENDED_ARG,\n HAVE_ARGUMENT as HAVE_ARGUMENT,\n cmp_op as cmp_op,\n hascompare as hascompare,\n hasconst as hasconst,\n hasfree as hasfree,\n hasjabs as hasjabs,\n hasjrel as hasjrel,\n haslocal as haslocal,\n hasname as ha... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\dis.pyi | dis.pyi | Other | 3,089 | 0.95 | 0.385542 | 0.028169 | vue-tools | 170 | 2023-10-08T02:26:38.933620 | Apache-2.0 | false | 6797231b518f386ecbe7dd0bcd20db04 |
import sys\nimport types\nimport unittest\nfrom typing import Any, Callable, Dict, List, NamedTuple, Optional, Tuple, Type, Union\n\nclass TestResults(NamedTuple):\n failed: int\n attempted: int\n\nOPTIONFLAGS_BY_NAME: Dict[str, int]\n\ndef register_optionflag(name: str) -> int: ...\n\nDONT_ACCEPT_TRUE_FOR_1: int... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\doctest.pyi | doctest.pyi | Other | 7,083 | 0.85 | 0.294643 | 0.010152 | vue-tools | 956 | 2023-11-18T16:24:15.456657 | GPL-3.0 | true | 033c49f780ca1e9b91ca589568a5cb5a |
from _dummy_threading import *\nfrom _dummy_threading import __all__ as __all__\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\dummy_threading.pyi | dummy_threading.pyi | Other | 79 | 0.65 | 0 | 0 | vue-tools | 849 | 2024-02-02T07:39:17.206568 | BSD-3-Clause | false | c24f4ea3dccfd1050aa29100627489d5 |
from typing import Mapping\n\nerrorcode: Mapping[int, str]\n\nEPERM: int\nENOENT: int\nESRCH: int\nEINTR: int\nEIO: int\nENXIO: int\nE2BIG: int\nENOEXEC: int\nEBADF: int\nECHILD: int\nEAGAIN: int\nENOMEM: int\nEACCES: int\nEFAULT: int\nENOTBLK: int\nEBUSY: int\nEEXIST: int\nEXDEV: int\nENODEV: int\nENOTDIR: int\nEISDIR... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\errno.pyi | errno.pyi | Other | 2,011 | 0.95 | 0 | 0 | node-utils | 742 | 2025-04-17T08:45:21.318535 | MIT | false | 3fbb7e763f0f27c0f3bf5d4795c2e1ae |
import sys\nfrom typing import Any, AnyStr, Callable, Dict, Generic, Iterable, List, Optional, Sequence, Text, Tuple, Union\n\nif sys.version_info >= (3, 6):\n from os import PathLike\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\nDEFAULT_IGNORES: List[str]\n\nif sys.version_info >= (3, 6):... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\filecmp.pyi | filecmp.pyi | Other | 2,566 | 0.95 | 0.328767 | 0.015152 | react-lib | 141 | 2023-11-13T06:30:45.407986 | BSD-3-Clause | false | b1c6bf84270f027cb658a017777f628c |
import sys\nfrom _typeshed import AnyPath\nfrom typing import IO, Any, AnyStr, Callable, Generic, Iterable, Iterator, Optional, Union\n\nif sys.version_info >= (3, 8):\n def input(\n files: Union[AnyPath, Iterable[AnyPath], None] = ...,\n inplace: bool = ...,\n backup: str = ...,\n *,\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\fileinput.pyi | fileinput.pyi | Other | 2,601 | 0.85 | 0.448718 | 0.028169 | react-lib | 426 | 2024-11-22T04:14:04.050743 | GPL-3.0 | false | d36d95bd195f421454a7088e824103a8 |
from typing import IO, Any, Iterable, List, Optional, Tuple\n\nAS_IS: None\n_FontType = Tuple[str, bool, bool, bool]\n_StylesType = Tuple[Any, ...]\n\nclass NullFormatter:\n writer: Optional[NullWriter]\n def __init__(self, writer: Optional[NullWriter] = ...) -> None: ...\n def end_paragraph(self, blankline: i... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\formatter.pyi | formatter.pyi | Other | 4,639 | 0.85 | 0.737864 | 0 | python-kit | 157 | 2024-02-06T01:44:07.404354 | MIT | false | e62d308811533bca506dac7d01113722 |
import sys\nfrom decimal import Decimal\nfrom numbers import Integral, Rational, Real\nfrom typing import Optional, Tuple, Union, overload\nfrom typing_extensions import Literal\n\n_ComparableNum = Union[int, float, Decimal, Real]\n\nif sys.version_info < (3, 9):\n @overload\n def gcd(a: int, b: int) -> int: ...\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\fractions.pyi | fractions.pyi | Other | 5,936 | 0.95 | 0.528302 | 0.012821 | react-lib | 1,000 | 2024-07-17T21:42:41.344569 | BSD-3-Clause | false | 597b7df4a5bc167e9123aefafd0f1786 |
import sys\nfrom _typeshed import SupportsRead, SupportsReadline\nfrom socket import socket\nfrom ssl import SSLContext\nfrom types import TracebackType\nfrom typing import Any, BinaryIO, Callable, Dict, Iterable, Iterator, List, Optional, Text, TextIO, Tuple, Type, TypeVar, Union\nfrom typing_extensions import Literal... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\ftplib.pyi | ftplib.pyi | Other | 6,278 | 0.95 | 0.448485 | 0.026144 | python-kit | 445 | 2024-04-26T18:54:03.281506 | MIT | false | 04d1b17edb2e0a92c101adc5033b9cd9 |
import sys\nfrom typing import AnyStr, Sequence, Text, Union\n\nif sys.version_info >= (3, 0):\n def commonprefix(m: Sequence[str]) -> str: ...\n\nelse:\n def commonprefix(m: Sequence[AnyStr]) -> AnyStr: ...\n\nif sys.version_info >= (3, 6):\n from builtins import _PathLike\n def exists(path: Union[AnyStr, ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\genericpath.pyi | genericpath.pyi | Other | 806 | 0.85 | 0.592593 | 0 | node-utils | 829 | 2025-06-19T04:14:08.547561 | Apache-2.0 | false | d2731390acd4ee8af5fded7edc5c977b |
from typing import List, NamedTuple, Optional\n\nclass struct_group(NamedTuple):\n gr_name: str\n gr_passwd: Optional[str]\n gr_gid: int\n gr_mem: List[str]\n\ndef getgrall() -> List[struct_group]: ...\ndef getgrgid(gid: int) -> struct_group: ...\ndef getgrnam(name: str) -> struct_group: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\grp.pyi | grp.pyi | Other | 295 | 0.85 | 0.363636 | 0 | python-kit | 319 | 2025-06-24T01:56:19.916164 | GPL-3.0 | false | 2ae59e8a94cae9ff91720617de374292 |
import sys\nfrom _typeshed import ReadableBuffer\nfrom types import ModuleType\nfrom typing import Any, AnyStr, Callable, Optional, Union, overload\n\n# TODO more precise type for object of hashlib\n_Hash = Any\n_DigestMod = Union[str, Callable[[], _Hash], ModuleType]\n\ndigest_size: None\n\nif sys.version_info >= (3, ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\hmac.pyi | hmac.pyi | Other | 1,607 | 0.95 | 0.454545 | 0.083333 | awesome-app | 787 | 2024-07-14T17:53:04.268434 | MIT | false | e39ea7769bd10157acf1c693f8fc4c5d |
import subprocess\nimport sys\nimport time\nfrom socket import socket as _socket\nfrom ssl import SSLContext, SSLSocket\nfrom types import TracebackType\nfrom typing import IO, Any, Callable, Dict, List, Optional, Pattern, Text, Tuple, Type, Union\nfrom typing_extensions import Literal\n\n# TODO: Commands should use th... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\imaplib.pyi | imaplib.pyi | Other | 8,034 | 0.95 | 0.546512 | 0.012121 | react-lib | 4 | 2023-07-13T10:09:16.475367 | GPL-3.0 | false | 71326fdf6fa3550f5bfe7c46cad81c09 |
import os\nimport sys\nfrom typing import Any, BinaryIO, Callable, List, Optional, Protocol, Text, Union, overload\n\nclass _ReadableBinary(Protocol):\n def tell(self) -> int: ...\n def read(self, size: int) -> bytes: ...\n def seek(self, offset: int) -> Any: ...\n\nif sys.version_info >= (3, 6):\n _File = ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\imghdr.pyi | imghdr.pyi | Other | 604 | 0.85 | 0.35 | 0 | vue-tools | 996 | 2025-03-21T15:56:32.427308 | Apache-2.0 | false | 8bc6c16e28353ac5bd64ac2701dabce9 |
import sys\nfrom typing import Sequence, Text\n\ndef iskeyword(s: Text) -> bool: ...\n\nkwlist: Sequence[str]\n\nif sys.version_info >= (3, 9):\n def issoftkeyword(s: str) -> bool: ...\n softkwlist: Sequence[str]\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\keyword.pyi | keyword.pyi | Other | 210 | 0.85 | 0.3 | 0 | awesome-app | 345 | 2024-02-12T21:15:51.901385 | BSD-3-Clause | false | 3054e3a33a82d9d24ef757a6b852410a |
import sys\nfrom typing import Any, Dict, List, Optional, Text\n\n_ModuleGlobals = Dict[str, Any]\n\ndef getline(filename: Text, lineno: int, module_globals: Optional[_ModuleGlobals] = ...) -> str: ...\ndef clearcache() -> None: ...\ndef getlines(filename: Text, module_globals: Optional[_ModuleGlobals] = ...) -> List[s... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\linecache.pyi | linecache.pyi | Other | 591 | 0.85 | 0.538462 | 0 | awesome-app | 44 | 2024-10-31T07:34:04.692556 | GPL-3.0 | false | f95ec252157da4085ba6ede83d5f5114 |
import sys\nfrom decimal import Decimal\nfrom typing import Any, Callable, Dict, Iterable, List, Mapping, Optional, Sequence, Tuple, Union\n\n# workaround for mypy#2010\nif sys.version_info < (3,):\n from __builtin__ import str as _str\nelse:\n from builtins import str as _str\n\nCODESET: int\nD_T_FMT: int\nD_FMT... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\locale.pyi | locale.pyi | Other | 2,555 | 0.95 | 0.207207 | 0.010638 | react-lib | 280 | 2024-06-30T03:43:48.550306 | GPL-3.0 | false | ee75b4ac397866cfb40fdef35816d869 |
import os\nimport sys\nfrom _typeshed import AnyPath, BytesPath, StrPath\nfrom typing import Any, AnyStr, Callable, List, Optional, Sequence, Text, Tuple, TypeVar, Union, overload\n\nif sys.version_info < (3, 8):\n _T = TypeVar("_T")\n\n if sys.version_info >= (3, 6):\n from builtins import _PathLike\n\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\macpath.pyi | macpath.pyi | Other | 5,330 | 0.95 | 0.507576 | 0.109375 | vue-tools | 152 | 2025-06-24T22:42:01.890794 | BSD-3-Clause | false | 2f6dc2684a5a6a8ba41891f55ba64c61 |
import email.message\nimport sys\nfrom _typeshed import AnyPath\nfrom types import TracebackType\nfrom typing import (\n IO,\n Any,\n AnyStr,\n Callable,\n Dict,\n Generic,\n Iterable,\n Iterator,\n List,\n Mapping,\n Optional,\n Protocol,\n Sequence,\n Text,\n Tuple,\n T... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\mailbox.pyi | mailbox.pyi | Other | 8,071 | 0.95 | 0.628019 | 0.005495 | awesome-app | 862 | 2023-09-23T21:25:55.989624 | GPL-3.0 | false | 584a6d9c7d9365da19408fd4061043e9 |
from typing import Dict, List, Mapping, Optional, Sequence, Tuple, Union\n\n_Cap = Dict[str, Union[str, int]]\n\ndef findmatch(\n caps: Mapping[str, List[_Cap]], MIMEtype: str, key: str = ..., filename: str = ..., plist: Sequence[str] = ...\n) -> Tuple[Optional[str], Optional[_Cap]]: ...\ndef getcaps() -> Dict[str, ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\mailcap.pyi | mailcap.pyi | Other | 330 | 0.85 | 0.25 | 0 | python-kit | 387 | 2023-11-19T12:26:14.522915 | BSD-3-Clause | false | fb23994e68edbdc4b47d2547916a46dd |
from typing import IO, Any\n\nversion: int\n\ndef dump(__value: Any, __file: IO[Any], __version: int = ...) -> None: ...\ndef load(__file: IO[Any]) -> Any: ...\ndef dumps(__value: Any, __version: int = ...) -> bytes: ...\ndef loads(__bytes: bytes) -> Any: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\marshal.pyi | marshal.pyi | Other | 253 | 0.85 | 0.5 | 0 | awesome-app | 153 | 2024-10-10T08:37:21.500939 | MIT | false | 7d7cbeb8aed67887ef263d460b324040 |
import sys\nfrom typing import Iterable, Optional, SupportsFloat, SupportsInt, Tuple, overload\n\ne: float\npi: float\nif sys.version_info >= (3, 5):\n inf: float\n nan: float\nif sys.version_info >= (3, 6):\n tau: float\n\ndef acos(__x: SupportsFloat) -> float: ...\ndef acosh(__x: SupportsFloat) -> float: ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\math.pyi | math.pyi | Other | 3,835 | 0.95 | 0.628099 | 0 | vue-tools | 15 | 2023-11-02T03:45:12.736126 | MIT | false | e450df296cd6c1c6def1b42a09e6fe7a |
import sys\nfrom typing import IO, Dict, List, Optional, Sequence, Text, Tuple, Union\n\nif sys.version_info >= (3, 8):\n from os import PathLike\n def guess_type(url: Union[Text, PathLike[str]], strict: bool = ...) -> Tuple[Optional[str], Optional[str]]: ...\n\nelse:\n def guess_type(url: Text, strict: bool =... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\mimetypes.pyi | mimetypes.pyi | Other | 1,641 | 0.85 | 0.472222 | 0 | react-lib | 548 | 2024-07-06T18:35:41.944739 | BSD-3-Clause | false | f3f846951466e875b2a29950605b14c2 |
import sys\nfrom _typeshed import ReadableBuffer\nfrom typing import AnyStr, ContextManager, Generic, Iterable, Iterator, Optional, Sequence, Sized, Union, overload\n\nACCESS_DEFAULT: int\nACCESS_READ: int\nACCESS_WRITE: int\nACCESS_COPY: int\n\nALLOCATIONGRANULARITY: int\n\nif sys.platform != "win32":\n MAP_ANON: i... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\mmap.pyi | mmap.pyi | Other | 4,006 | 0.95 | 0.411215 | 0.020202 | vue-tools | 382 | 2024-03-23T11:40:30.514786 | MIT | false | bf7019295f33b58b37b033fe3165f881 |
import sys\nfrom types import CodeType\nfrom typing import IO, Any, Container, Dict, Iterable, Iterator, List, Optional, Sequence, Tuple\n\nLOAD_CONST: int # undocumented\nIMPORT_NAME: int # undocumented\nSTORE_NAME: int # undocumented\nSTORE_GLOBAL: int # undocumented\nSTORE_OPS: Tuple[int, int] # undocumented\nE... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\modulefinder.pyi | modulefinder.pyi | Other | 3,674 | 0.95 | 0.421053 | 0 | vue-tools | 206 | 2025-03-27T20:55:19.335827 | GPL-3.0 | false | 745a01da9fca0acaed3c15908f64f9ad |
import sys\nfrom typing import Text\n\n# This module is only available on Windows\nif sys.platform == "win32":\n LK_LOCK: int\n LK_NBLCK: int\n LK_NBRLCK: int\n LK_RLCK: int\n LK_UNLCK: int\n def locking(__fd: int, __mode: int, __nbytes: int) -> None: ...\n def setmode(__fd: int, __mode: int) -> in... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\msvcrt.pyi | msvcrt.pyi | Other | 795 | 0.95 | 0.625 | 0.043478 | python-kit | 651 | 2024-05-05T01:59:40.584034 | GPL-3.0 | false | 4b9bec955a68ca328eea0f7a82b09225 |
from typing import Dict, List, Optional, Tuple\n\nclass NetrcParseError(Exception):\n filename: Optional[str]\n lineno: Optional[int]\n msg: str\n\n# (login, account, password) tuple\n_NetrcTuple = Tuple[str, Optional[str], Optional[str]]\n\nclass netrc:\n hosts: Dict[str, _NetrcTuple]\n macros: Dict[str... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\netrc.pyi | netrc.pyi | Other | 444 | 0.95 | 0.266667 | 0.083333 | node-utils | 324 | 2024-10-27T14:40:05.091443 | BSD-3-Clause | false | e7e2228d50271a96e8f06166e56c90cc |
import sys\nfrom typing import Dict, List\n\nif sys.platform != "win32":\n def cat(map: str, domain: str = ...) -> Dict[str, str]: ...\n def get_default_domain() -> str: ...\n def maps(domain: str = ...) -> List[str]: ...\n def match(key: str, map: str, domain: str = ...) -> str: ...\n class error(Except... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\nis.pyi | nis.pyi | Other | 322 | 0.85 | 0.666667 | 0 | python-kit | 770 | 2024-03-16T00:09:08.837131 | BSD-3-Clause | false | cfa44b438e07f4a755b1d7e24533fdbe |
# Note: these stubs are incomplete. The more complex type\n# signatures are currently omitted.\n\nimport sys\nfrom abc import ABCMeta, abstractmethod\nfrom typing import Any, Optional, SupportsFloat, overload\n\nclass Number(metaclass=ABCMeta):\n @abstractmethod\n def __hash__(self) -> int: ...\n\nclass Complex(N... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\numbers.pyi | numbers.pyi | Other | 4,335 | 0.95 | 0.521429 | 0.014925 | python-kit | 802 | 2025-02-26T17:43:30.510594 | MIT | false | 5fc4ebebdb06c74d7f380f9b6fd70be8 |
import sys\nfrom typing import Dict, List, Optional, Sequence\n\ncmp_op: Sequence[str]\nhasconst: List[int]\nhasname: List[int]\nhasjrel: List[int]\nhasjabs: List[int]\nhaslocal: List[int]\nhascompare: List[int]\nhasfree: List[int]\nopname: List[str]\n\nopmap: Dict[str, int]\nHAVE_ARGUMENT: int\nEXTENDED_ARG: int\n\nif... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\opcode.pyi | opcode.pyi | Other | 609 | 0.85 | 0.16 | 0 | python-kit | 637 | 2023-12-08T07:01:02.512516 | Apache-2.0 | false | 24c09f769d3e2c22fd0947b7726d6cee |
import sys\nfrom typing import (\n Any,\n Callable,\n Container,\n Mapping,\n MutableMapping,\n MutableSequence,\n Sequence,\n SupportsAbs,\n Tuple,\n TypeVar,\n overload,\n)\n\n_T = TypeVar("_T")\n_K = TypeVar("_K")\n_V = TypeVar("_V")\n\ndef lt(__a: Any, __b: Any) -> Any: ...\ndef le(... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\operator.pyi | operator.pyi | Other | 7,146 | 0.85 | 0.699029 | 0 | awesome-app | 648 | 2023-09-29T18:12:40.106830 | Apache-2.0 | false | b50e45a16372f472f65061787e6d2e52 |
import sys\nfrom typing import IO, Any, AnyStr, Callable, Dict, Iterable, List, Mapping, Optional, Sequence, Tuple, Type, Union, overload\n\n# See https://groups.google.com/forum/#!topic/python-ideas/gA1gdj3RZ5g\nif sys.version_info >= (3,):\n _Text = str\nelse:\n _Text = Union[str, unicode]\n\nNO_DEFAULT: Tuple[... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\optparse.pyi | optparse.pyi | Other | 10,096 | 0.95 | 0.543103 | 0.004673 | node-utils | 48 | 2023-11-20T18:46:07.762164 | GPL-3.0 | false | a67512e82aebf8960d31c8d7fa5f5bba |
from _typeshed import AnyPath\nfrom types import CodeType\nfrom typing import Any, List, Sequence, Text, Tuple\n\ndef expr(source: Text) -> STType: ...\ndef suite(source: Text) -> STType: ...\ndef sequence2st(sequence: Sequence[Any]) -> STType: ...\ndef tuple2st(sequence: Sequence[Any]) -> STType: ...\ndef st2list(st: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\parser.pyi | parser.pyi | Other | 966 | 0.85 | 0.727273 | 0 | vue-tools | 356 | 2025-05-24T03:36:15.222823 | MIT | false | 10030d64b53faccf9abc5bcdc7e634ea |
import signal\nimport sys\nfrom bdb import Bdb\nfrom cmd import Cmd\nfrom inspect import _SourceObjectType\nfrom types import CodeType, FrameType, TracebackType\nfrom typing import IO, Any, Callable, ClassVar, Dict, Iterable, List, Mapping, Optional, Sequence, Tuple, TypeVar, Union\n\n_T = TypeVar("_T")\n\nline_prefix:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pdb.pyi | pdb.pyi | Other | 10,325 | 0.95 | 0.556 | 0.008621 | vue-tools | 86 | 2024-01-19T03:59:32.412665 | MIT | false | 3490eaec1d61294fd2f97e361ae285a1 |
import sys\nfrom typing import IO, Any, Callable, Iterable, Iterator, Mapping, Optional, Tuple, Type, Union\n\nHIGHEST_PROTOCOL: int\nif sys.version_info >= (3, 0):\n DEFAULT_PROTOCOL: int\n\nbytes_types: Tuple[Type[Any], ...] # undocumented\n\nif sys.version_info >= (3, 8):\n # TODO: holistic design for buffer ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pickle.pyi | pickle.pyi | Other | 5,322 | 0.95 | 0.241935 | 0.052941 | vue-tools | 149 | 2023-08-13T23:49:34.838275 | GPL-3.0 | false | 7f51984375a6f1811b8a00cc2c97cd9c |
import sys\nfrom typing import IO, Any, Callable, Iterator, List, MutableMapping, Optional, Text, Tuple, Type, Union\n\n_Reader = Callable[[IO[bytes]], Any]\n\nif sys.version_info >= (3, 0):\n bytes_types: Tuple[Type[Any], ...]\n\nUP_TO_NEWLINE: int\nTAKEN_FROM_ARGUMENT1: int\nTAKEN_FROM_ARGUMENT4: int\nif sys.versi... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pickletools.pyi | pickletools.pyi | Other | 4,510 | 0.85 | 0.256983 | 0 | node-utils | 93 | 2024-12-24T06:01:18.374576 | GPL-3.0 | false | 644f8819671be966137d4f08dac839d4 |
import sys\nfrom _typeshed import SupportsRead\nfrom typing import IO, Any, Callable, Iterable, Iterator, NamedTuple, Optional, Tuple, Union\n\nif sys.version_info >= (3,):\n from importlib.abc import Loader, MetaPathFinder, PathEntryFinder\nelse:\n Loader = Any\n MetaPathFinder = Any\n PathEntryFinder = An... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pkgutil.pyi | pkgutil.pyi | Other | 1,558 | 0.95 | 0.421053 | 0 | python-kit | 544 | 2024-08-24T02:13:55.702002 | GPL-3.0 | false | b6b25bd28ae39cf58e5ffc8a7bb7fd31 |
import sys\nfrom typing import IO, Any, Dict as DictT, Mapping, MutableMapping, Optional, Text, Type, Union\n\nif sys.version_info >= (3,):\n from enum import Enum\n class PlistFormat(Enum):\n FMT_XML: int\n FMT_BINARY: int\n FMT_XML = PlistFormat.FMT_XML\n FMT_BINARY = PlistFormat.FMT_BINARY\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\plistlib.pyi | plistlib.pyi | Other | 2,742 | 0.85 | 0.5 | 0.032787 | react-lib | 413 | 2023-12-05T18:45:01.494253 | Apache-2.0 | false | 1c3e346d55c5bcba151b967005b17911 |
import socket\nimport ssl\nimport sys\nfrom typing import Any, BinaryIO, Dict, List, Optional, Pattern, Text, Tuple, overload\n\n_LongResp = Tuple[bytes, List[bytes], int]\n\nclass error_proto(Exception): ...\n\nPOP3_PORT: int\nPOP3_SSL_PORT: int\nCR: bytes\nLF: bytes\nCRLF: bytes\n\nclass POP3:\n if sys.version_inf... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\poplib.pyi | poplib.pyi | Other | 2,500 | 0.95 | 0.465753 | 0.015152 | node-utils | 893 | 2025-05-12T04:15:05.159545 | Apache-2.0 | false | 9859a212d3b28b93a6aa4256831e6618 |
import sys\nfrom typing import IO, Any, Dict, Optional, Tuple\n\nif sys.version_info >= (3, 8):\n def pformat(\n object: object,\n indent: int = ...,\n width: int = ...,\n depth: Optional[int] = ...,\n *,\n compact: bool = ...,\n sort_dicts: bool = ...,\n ) -> str:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pprint.pyi | pprint.pyi | Other | 2,893 | 0.85 | 0.237113 | 0.068182 | vue-tools | 21 | 2023-12-02T03:05:34.506634 | Apache-2.0 | false | e99b2b26ced0f53f7e35baa7ae0a1522 |
from _typeshed import AnyPath\nfrom typing import Any, Callable, Dict, Optional, TypeVar, Union\n\ndef run(statement: str, filename: Optional[str] = ..., sort: Union[str, int] = ...) -> None: ...\ndef runctx(\n statement: str, globals: Dict[str, Any], locals: Dict[str, Any], filename: Optional[str] = ..., sort: Unio... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\profile.pyi | profile.pyi | Other | 1,199 | 0.85 | 0.6 | 0 | awesome-app | 94 | 2024-04-13T17:59:33.663098 | BSD-3-Clause | false | aa63605906d7560c1389ad7973ff26fd |
import sys\nfrom _typeshed import AnyPath\nfrom cProfile import Profile as _cProfile\nfrom profile import Profile\nfrom typing import IO, Any, Dict, Iterable, List, Optional, Text, Tuple, TypeVar, Union, overload\n\n_Selector = Union[str, float, int]\n_T = TypeVar("_T", bound=Stats)\n\nif sys.version_info >= (3, 7):\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pstats.pyi | pstats.pyi | Other | 2,213 | 0.85 | 0.461538 | 0.020408 | vue-tools | 496 | 2024-08-22T17:42:32.242835 | BSD-3-Clause | false | 3c24c39fadf30a433522f6d89483d81d |
import sys\nfrom typing import Callable, Iterable, Tuple, Union\n\n_Reader = Callable[[int], bytes]\n\nSTDIN_FILENO: int\nSTDOUT_FILENO: int\nSTDERR_FILENO: int\n\nCHILD: int\n\ndef openpty() -> Tuple[int, int]: ...\ndef master_open() -> Tuple[int, str]: ...\ndef slave_open(tty_name: str) -> int: ...\ndef fork() -> Tup... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pty.pyi | pty.pyi | Other | 592 | 0.85 | 0.333333 | 0 | vue-tools | 858 | 2025-05-31T13:28:31.907499 | BSD-3-Clause | false | 640a61885a16c80e5d5eb5585a2a9c7d |
from typing import List, Tuple\n\nclass struct_passwd(Tuple[str, str, int, int, str, str, str]):\n pw_name: str\n pw_passwd: str\n pw_uid: int\n pw_gid: int\n pw_gecos: str\n pw_dir: str\n pw_shell: str\n\ndef getpwall() -> List[struct_passwd]: ...\ndef getpwuid(uid: int) -> struct_passwd: ...\ndef... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pwd.pyi | pwd.pyi | Other | 350 | 0.85 | 0.285714 | 0 | awesome-app | 845 | 2024-05-23T17:17:12.812867 | Apache-2.0 | false | 7d6f4c4d7bfec1a077bec8a8745aa938 |
import sys\nfrom typing import Dict, List, Optional, Sequence, Union\n\nclass Class:\n module: str\n name: str\n super: Optional[List[Union[Class, str]]]\n methods: Dict[str, int]\n file: int\n lineno: int\n\n if sys.version_info >= (3, 7):\n def __init__(\n self,\n mod... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pyclbr.pyi | pyclbr.pyi | Other | 1,192 | 0.85 | 0.27027 | 0 | awesome-app | 601 | 2024-10-13T17:17:43.816071 | MIT | false | 2e6b0c3dae57f280cb7bd26a4f293c17 |
import sys\nfrom _typeshed import SupportsWrite\nfrom types import MethodType, ModuleType, TracebackType\nfrom typing import (\n IO,\n Any,\n AnyStr,\n Callable,\n Container,\n Dict,\n List,\n Mapping,\n MutableMapping,\n NoReturn,\n Optional,\n Text,\n Tuple,\n Type,\n Unio... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pydoc.pyi | pydoc.pyi | Other | 10,660 | 0.95 | 0.43956 | 0.047619 | vue-tools | 470 | 2024-06-04T03:55:34.235409 | MIT | false | 7833761f8a38439364519d7f173b7a8b |
import enum\nimport sys\nfrom typing import AnyStr, List, Optional, Text, Type, Union\n\n_EitherStr = Union[bytes, Text]\n\nclass PyCompileError(Exception):\n exc_type_name: str\n exc_value: BaseException\n file: str\n msg: str\n def __init__(self, exc_type: Type[BaseException], exc_value: BaseException,... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\py_compile.pyi | py_compile.pyi | Other | 1,642 | 0.85 | 0.211538 | 0 | vue-tools | 592 | 2025-04-18T12:55:55.621789 | GPL-3.0 | false | a7885c4437b65551d218b4e35122f908 |
from typing import BinaryIO\n\ndef encode(input: BinaryIO, output: BinaryIO, quotetabs: int, header: int = ...) -> None: ...\ndef encodestring(s: bytes, quotetabs: int = ..., header: int = ...) -> bytes: ...\ndef decode(input: BinaryIO, output: BinaryIO, header: int = ...) -> None: ...\ndef decodestring(s: bytes, heade... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\quopri.pyi | quopri.pyi | Other | 343 | 0.85 | 0.666667 | 0 | awesome-app | 509 | 2025-02-06T12:59:35.544669 | BSD-3-Clause | false | 7071851dd7326f49e77b5edba3ad5a68 |
import sys\nfrom typing import Callable, Optional, Sequence\n\n_CompleterT = Optional[Callable[[str, int], Optional[str]]]\n_CompDispT = Optional[Callable[[str, Sequence[str], int], None]]\n\ndef parse_and_bind(string: str) -> None: ...\ndef read_init_file(filename: str = ...) -> None: ...\ndef get_line_buffer() -> str... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\readline.pyi | readline.pyi | Other | 1,585 | 0.85 | 0.846154 | 0 | node-utils | 376 | 2025-06-08T22:50:43.614607 | MIT | false | 6898899ae58be222df7f57d3fbfc0bce |
import sys\nfrom typing import Any, Dict, Optional, Union\n\nif sys.version_info >= (3,):\n _Text = str\nelse:\n _Text = Union[str, unicode]\n\nclass Completer:\n def __init__(self, namespace: Optional[Dict[str, Any]] = ...) -> None: ...\n def complete(self, text: _Text, state: int) -> Optional[str]: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\rlcompleter.pyi | rlcompleter.pyi | Other | 308 | 0.85 | 0.363636 | 0 | vue-tools | 140 | 2023-08-12T17:54:36.301027 | BSD-3-Clause | false | 7be8c0bb6c937629d247abb22759b54d |
import sys\nfrom typing import Any, Callable, Dict, List, NamedTuple, Optional, Text, Tuple\n\nclass Event(NamedTuple):\n time: float\n priority: Any\n action: Callable[..., Any]\n argument: Tuple[Any, ...]\n kwargs: Dict[Text, Any]\n\nclass scheduler:\n if sys.version_info >= (3, 3):\n def __i... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\sched.pyi | sched.pyi | Other | 1,497 | 0.85 | 0.358974 | 0 | awesome-app | 865 | 2024-09-07T21:47:01.508730 | MIT | false | d2951148293844c680c0f9769919837f |
import sys\nfrom _typeshed import FileDescriptorLike\nfrom types import TracebackType\nfrom typing import Any, Iterable, List, Optional, Tuple, Type\n\nif sys.platform != "win32":\n PIPE_BUF: int\n POLLERR: int\n POLLHUP: int\n POLLIN: int\n POLLMSG: int\n POLLNVAL: int\n POLLOUT: int\n POLLPRI:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\select.pyi | select.pyi | Other | 4,828 | 0.95 | 0.296053 | 0.02069 | python-kit | 343 | 2024-05-20T21:14:47.151845 | BSD-3-Clause | false | 4be545f7cfd0ad62bdd77a8edfab23b5 |
import os\nimport sys\nfrom _typeshed import StrPath, SupportsRead, SupportsWrite\nfrom typing import (\n Any,\n AnyStr,\n Callable,\n Iterable,\n List,\n NamedTuple,\n Optional,\n Sequence,\n Set,\n Tuple,\n Type,\n TypeVar,\n Union,\n overload,\n)\n\nif sys.version_info >= (3... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\shutil.pyi | shutil.pyi | Other | 5,961 | 0.95 | 0.343373 | 0.027586 | react-lib | 121 | 2025-03-28T00:22:57.008744 | MIT | false | 022613d9bc31995a719f490c62a9f195 |
import sys\nfrom typing import Iterable, List, Optional\n\nPREFIXES: List[str]\nENABLE_USER_SITE: Optional[bool]\nUSER_SITE: Optional[str]\nUSER_BASE: Optional[str]\n\nif sys.version_info < (3,):\n def main() -> None: ...\n\ndef addsitedir(sitedir: str, known_paths: Optional[Iterable[str]] = ...) -> None: ...\ndef g... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\site.pyi | site.pyi | Other | 450 | 0.85 | 0.4 | 0 | vue-tools | 223 | 2024-01-03T15:20:20.596788 | GPL-3.0 | false | 590a3e7560232954048eaf26e23ee51a |
import asynchat\nimport asyncore\nimport socket\nimport sys\nfrom typing import Any, DefaultDict, List, Optional, Text, Tuple, Type\n\n_Address = Tuple[str, int] # (host, port)\n\nclass SMTPChannel(asynchat.async_chat):\n COMMAND: int\n DATA: int\n\n if sys.version_info >= (3,):\n command_size_limits: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\smtpd.pyi | smtpd.pyi | Other | 2,935 | 0.95 | 0.348837 | 0.012987 | awesome-app | 632 | 2024-03-27T10:38:14.829700 | GPL-3.0 | false | 1a1079752d0eaf11b2a2970ff8360f4a |
import sys\nfrom _typeshed import AnyPath\nfrom typing import NamedTuple, Optional, Tuple, Union\n\nif sys.version_info >= (3, 5):\n class SndHeaders(NamedTuple):\n filetype: str\n framerate: int\n nchannels: int\n nframes: int\n sampwidth: Union[int, str]\n _SndHeaders = SndHea... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\sndhdr.pyi | sndhdr.pyi | Other | 501 | 0.85 | 0.235294 | 0 | node-utils | 389 | 2024-08-10T05:54:37.421747 | MIT | false | 8fdb3802f647e01385ce364e07ae145b |
import sys\nfrom typing import Any, BinaryIO, Iterable, List, Optional, Text, TextIO, Tuple, TypeVar, Union, overload\nfrom typing_extensions import Literal\n\n# ----- Constants -----\n# Some socket families are listed in the "Socket families" section of the docs,\n# but not the "Constants" section. These are listed at... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\socket.pyi | socket.pyi | Other | 22,711 | 0.95 | 0.173101 | 0.050272 | react-lib | 441 | 2023-09-01T03:22:53.318856 | MIT | false | 04de097354fac21f3a65934017817600 |
import sys\nfrom sre_constants import (\n SRE_FLAG_DEBUG as SRE_FLAG_DEBUG,\n SRE_FLAG_DOTALL as SRE_FLAG_DOTALL,\n SRE_FLAG_IGNORECASE as SRE_FLAG_IGNORECASE,\n SRE_FLAG_LOCALE as SRE_FLAG_LOCALE,\n SRE_FLAG_MULTILINE as SRE_FLAG_MULTILINE,\n SRE_FLAG_TEMPLATE as SRE_FLAG_TEMPLATE,\n SRE_FLAG_UNIC... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\sre_compile.pyi | sre_compile.pyi | Other | 1,073 | 0.85 | 0.16129 | 0 | vue-tools | 801 | 2024-08-20T14:15:38.750133 | BSD-3-Clause | false | 85119c9d265f7aed870147ef4aca4693 |
import enum\nimport socket\nimport sys\nfrom _typeshed import StrPath\nfrom typing import Any, Callable, ClassVar, Dict, Iterable, List, NamedTuple, Optional, Set, Text, Tuple, Type, Union, overload\nfrom typing_extensions import Literal\n\n_PCTRTT = Tuple[Tuple[str, str], ...]\n_PCTRTTT = Tuple[_PCTRTT, ...]\n_PeerCer... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\ssl.pyi | ssl.pyi | Other | 14,626 | 0.95 | 0.291375 | 0.010076 | python-kit | 936 | 2023-10-13T10:11:36.526950 | BSD-3-Clause | false | 50b5fb988ed9e6f2471fbff8622fcd34 |
from typing import Text\n\ndef in_table_a1(code: Text) -> bool: ...\ndef in_table_b1(code: Text) -> bool: ...\ndef map_table_b3(code: Text) -> Text: ...\ndef map_table_b2(a: Text) -> Text: ...\ndef in_table_c11(code: Text) -> bool: ...\ndef in_table_c12(code: Text) -> bool: ...\ndef in_table_c11_c12(code: Text) -> bool... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\stringprep.pyi | stringprep.pyi | Other | 817 | 0.85 | 0.904762 | 0 | awesome-app | 831 | 2024-06-16T14:07:09.184959 | BSD-3-Clause | false | 10c09cef80b64ba278e4a0df3681a69f |
import sys\nfrom array import array\nfrom mmap import mmap\nfrom typing import Any, Iterator, Text, Tuple, Union\n\nclass error(Exception): ...\n\n_FmtType = Union[bytes, Text]\nif sys.version_info >= (3,):\n _BufferType = Union[array[int], bytes, bytearray, memoryview, mmap]\n _WriteBufferType = Union[array, byt... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\struct.pyi | struct.pyi | Other | 1,568 | 0.85 | 0.473684 | 0 | python-kit | 664 | 2025-01-27T17:38:35.147974 | Apache-2.0 | false | 3c6508515380ac4415c08da489989679 |
import sys\nfrom typing import IO, Any, NamedTuple, NoReturn, Optional, Text, Tuple, Union\n\n_File = Union[Text, IO[bytes]]\n\nclass Error(Exception): ...\n\nAUDIO_FILE_MAGIC: int\nAUDIO_FILE_ENCODING_MULAW_8: int\nAUDIO_FILE_ENCODING_LINEAR_8: int\nAUDIO_FILE_ENCODING_LINEAR_16: int\nAUDIO_FILE_ENCODING_LINEAR_24: in... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\sunau.pyi | sunau.pyi | Other | 3,085 | 0.95 | 0.616279 | 0.025641 | node-utils | 764 | 2023-09-13T00:56:03.391288 | Apache-2.0 | false | 491d614dcf1566766f5272aa361f9aaa |
import sys\nfrom typing import List, Sequence, Text, Tuple\n\ndef symtable(code: Text, filename: Text, compile_type: Text) -> SymbolTable: ...\n\nclass SymbolTable(object):\n def get_type(self) -> str: ...\n def get_id(self) -> int: ...\n def get_name(self) -> str: ...\n def get_lineno(self) -> int: ...\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\symtable.pyi | symtable.pyi | Other | 1,645 | 0.85 | 0.844444 | 0 | awesome-app | 239 | 2025-01-26T00:44:34.723002 | GPL-3.0 | false | 36f132efc3fe3a182159a0e7ec8de9c7 |
from typing import IO, Any, Dict, List, Optional, Tuple, overload\n\ndef get_config_var(name: str) -> Optional[str]: ...\n@overload\ndef get_config_vars() -> Dict[str, Any]: ...\n@overload\ndef get_config_vars(arg: str, *args: str) -> List[Any]: ...\ndef get_scheme_names() -> Tuple[str, ...]: ...\ndef get_path_names() ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\sysconfig.pyi | sysconfig.pyi | Other | 843 | 0.85 | 0.764706 | 0 | react-lib | 958 | 2025-05-27T00:07:24.571807 | BSD-3-Clause | false | ded426c018a24cdf68993fbbd32c8f17 |
from typing import overload\n\nLOG_ALERT: int\nLOG_AUTH: int\nLOG_CONS: int\nLOG_CRIT: int\nLOG_CRON: int\nLOG_DAEMON: int\nLOG_DEBUG: int\nLOG_EMERG: int\nLOG_ERR: int\nLOG_INFO: int\nLOG_KERN: int\nLOG_LOCAL0: int\nLOG_LOCAL1: int\nLOG_LOCAL2: int\nLOG_LOCAL3: int\nLOG_LOCAL4: int\nLOG_LOCAL5: int\nLOG_LOCAL6: int\nL... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\syslog.pyi | syslog.pyi | Other | 821 | 0.85 | 0.162791 | 0 | node-utils | 496 | 2024-04-12T00:09:01.038746 | BSD-3-Clause | false | 734c3796ceaa3e48b42c7b47dc984682 |
from _typeshed import AnyPath\nfrom typing import Iterable, Tuple\n\nverbose: int\nfilename_only: int\n\nclass NannyNag(Exception):\n def __init__(self, lineno: int, msg: str, line: str) -> None: ...\n def get_lineno(self) -> int: ...\n def get_msg(self) -> str: ...\n def get_line(self) -> str: ...\n\ndef c... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\tabnanny.pyi | tabnanny.pyi | Other | 447 | 0.85 | 0.5 | 0 | react-lib | 91 | 2024-05-04T17:30:08.741182 | MIT | false | 194dedfc02f7021f0c8647f27e875d13 |
import sys\nfrom _typeshed import AnyPath, StrPath\nfrom types import TracebackType\nfrom typing import IO, Callable, Dict, Iterable, Iterator, List, Mapping, Optional, Set, Tuple, Type, Union\n\n# tar constants\nNUL: bytes\nBLOCKSIZE: int\nRECORDSIZE: int\nGNU_MAGIC: bytes\nPOSIX_MAGIC: bytes\n\nLENGTH_NAME: int\nLENG... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\tarfile.pyi | tarfile.pyi | Other | 8,182 | 0.95 | 0.292683 | 0.026432 | awesome-app | 392 | 2024-03-16T23:30:54.074447 | MIT | false | 7c676dac4c0f07e48d9743c6323d2332 |
import socket\nimport sys\nfrom typing import Any, Callable, Match, Optional, Pattern, Sequence, Tuple, Union\n\nDEBUGLEVEL: int\nTELNET_PORT: int\n\nIAC: bytes\nDONT: bytes\nDO: bytes\nWONT: bytes\nWILL: bytes\ntheNULL: bytes\n\nSE: bytes\nNOP: bytes\nDM: bytes\nBRK: bytes\nIP: bytes\nAO: bytes\nAYT: bytes\nEC: bytes\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\telnetlib.pyi | telnetlib.pyi | Other | 2,680 | 0.85 | 0.254386 | 0 | node-utils | 656 | 2024-05-05T21:52:59.624948 | GPL-3.0 | false | 80b41633a998f1d1ae53698a762991b9 |
from _typeshed import FileDescriptorLike\nfrom typing import Any, List, Union\n\n_Attr = List[Union[int, List[Union[bytes, int]]]]\n\n# TODO constants not really documented\nB0: int\nB1000000: int\nB110: int\nB115200: int\nB1152000: int\nB1200: int\nB134: int\nB150: int\nB1500000: int\nB1800: int\nB19200: int\nB200: in... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\termios.pyi | termios.pyi | Other | 3,504 | 0.95 | 0.028455 | 0.004132 | react-lib | 653 | 2023-10-17T09:10:44.262683 | MIT | false | e8a0bf900fa545c20dd9d8c31f6af0a8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.