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 abc import ABCMeta\nfrom typing import Any, Dict, Iterator, List, Mapping, Type, TypeVar, Union\n\n_T = TypeVar("_T")\n_S = TypeVar("_S", bound=Type[Enum])\n\n# Note: EnumMeta actually subclasses type directly, not ABCMeta.\n# This is a temporary workaround to allow multiple creation of enums with buil... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\enum.pyi | enum.pyi | Other | 2,643 | 0.95 | 0.465753 | 0.09375 | vue-tools | 661 | 2024-07-27T12:44:24.448149 | BSD-3-Clause | false | f25e6805a5089e1f879d11ed586cee48 |
import sys\nfrom _typeshed import FileDescriptorLike\n\ndef cancel_dump_traceback_later() -> None: ...\ndef disable() -> None: ...\ndef dump_traceback(file: FileDescriptorLike = ..., all_threads: bool = ...) -> None: ...\ndef dump_traceback_later(timeout: float, repeat: bool = ..., file: FileDescriptorLike = ..., exit:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\faulthandler.pyi | faulthandler.pyi | Other | 644 | 0.85 | 0.692308 | 0 | python-kit | 743 | 2025-01-07T13:07:32.893993 | GPL-3.0 | false | 0896c09fd453e48b97190e79438af70c |
import sys\nfrom _typeshed import FileDescriptorLike\nfrom array import array\nfrom typing import Any, Union, overload\nfrom typing_extensions import Literal\n\nFASYNC: int\nFD_CLOEXEC: int\nDN_ACCESS: int\nDN_ATTRIB: int\nDN_CREATE: int\nDN_DELETE: int\nDN_MODIFY: int\nDN_MULTISHOT: int\nDN_RENAME: int\nF_DUPFD: int\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\fcntl.pyi | fcntl.pyi | Other | 2,244 | 0.85 | 0.090909 | 0 | awesome-app | 739 | 2025-05-25T20:38:52.554687 | Apache-2.0 | false | 2000762aba57656d8f351b03c7ef3516 |
from typing import AnyStr, Iterable, List\n\ndef fnmatch(name: AnyStr, pat: AnyStr) -> bool: ...\ndef fnmatchcase(name: AnyStr, pat: AnyStr) -> bool: ...\ndef filter(names: Iterable[AnyStr], pat: AnyStr) -> List[AnyStr]: ...\ndef translate(pat: str) -> str: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\fnmatch.pyi | fnmatch.pyi | Other | 257 | 0.85 | 0.666667 | 0 | node-utils | 417 | 2025-07-09T02:27:04.330323 | GPL-3.0 | false | 9909ef20bec73c2f9d356620ea2b1680 |
import sys\nfrom _typeshed import SupportsLessThan\nfrom typing import (\n Any,\n Callable,\n Dict,\n Generic,\n Hashable,\n Iterable,\n Mapping,\n NamedTuple,\n Optional,\n Sequence,\n Tuple,\n Type,\n TypeVar,\n Union,\n overload,\n)\n\nif sys.version_info >= (3, 9):\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\functools.pyi | functools.pyi | Other | 4,613 | 0.95 | 0.422764 | 0.009346 | awesome-app | 396 | 2023-11-16T06:52:27.535334 | BSD-3-Clause | false | c4233dd777b7bd2d03c81b20af9f5f53 |
import sys\nfrom typing import Any, Dict, List, Optional, Tuple\n\nDEBUG_COLLECTABLE: int\nDEBUG_LEAK: int\nDEBUG_SAVEALL: int\nDEBUG_STATS: int\nDEBUG_UNCOLLECTABLE: int\ncallbacks: List[Any]\ngarbage: List[Any]\n\ndef collect(generation: int = ...) -> int: ...\ndef disable() -> None: ...\ndef enable() -> None: ...\nd... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\gc.pyi | gc.pyi | Other | 1,135 | 0.85 | 0.55 | 0 | awesome-app | 262 | 2023-09-18T13:13:45.805782 | Apache-2.0 | false | d8016482ff590b815fe4983ef0a548f2 |
from typing import List, Tuple\n\ndef getopt(args: List[str], shortopts: str, longopts: List[str] = ...) -> Tuple[List[Tuple[str, str]], List[str]]: ...\ndef gnu_getopt(args: List[str], shortopts: str, longopts: List[str] = ...) -> Tuple[List[Tuple[str, str]], List[str]]: ...\n\nclass GetoptError(Exception):\n msg: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\getopt.pyi | getopt.pyi | Other | 352 | 0.85 | 0.3 | 0 | awesome-app | 178 | 2024-09-15T05:23:23.529814 | Apache-2.0 | false | 25e11a38d9f295f417122c86ae4dd79a |
from typing import Optional, TextIO\n\ndef getpass(prompt: str = ..., stream: Optional[TextIO] = ...) -> str: ...\ndef getuser() -> str: ...\n\nclass GetPassWarning(UserWarning): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\getpass.pyi | getpass.pyi | Other | 178 | 0.85 | 0.5 | 0 | awesome-app | 724 | 2023-09-11T02:54:02.847743 | Apache-2.0 | false | a2e4bb6ca49cb48c379545e2f0ea697a |
import sys\nfrom _typeshed import StrPath\nfrom typing import IO, Any, Container, Iterable, Optional, Sequence, Type, TypeVar, overload\nfrom typing_extensions import Literal\n\nclass NullTranslations:\n def __init__(self, fp: Optional[IO[str]] = ...) -> None: ...\n def _parse(self, fp: IO[str]) -> None: ...\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\gettext.pyi | gettext.pyi | Other | 3,208 | 0.85 | 0.475 | 0 | vue-tools | 192 | 2024-02-05T03:19:50.717444 | BSD-3-Clause | false | fe93f3101e3df1636d6023932f7340b2 |
from typing import AnyStr, Iterator, List, Union\n\ndef glob0(dirname: AnyStr, pattern: AnyStr) -> List[AnyStr]: ...\ndef glob1(dirname: AnyStr, pattern: AnyStr) -> List[AnyStr]: ...\ndef glob(pathname: AnyStr, *, recursive: bool = ...) -> List[AnyStr]: ...\ndef iglob(pathname: AnyStr, *, recursive: bool = ...) -> Iter... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\glob.pyi | glob.pyi | Other | 442 | 0.95 | 0.75 | 0 | python-kit | 262 | 2023-09-12T04:50:15.477115 | BSD-3-Clause | false | 7d175c5af0c164767d8ca1ec9427c12a |
import _compression\nimport sys\nimport zlib\nfrom _typeshed import AnyPath, ReadableBuffer\nfrom typing import IO, Optional, TextIO, Union, overload\nfrom typing_extensions import Literal\n\n_OpenBinaryMode = Literal["r", "rb", "a", "ab", "w", "wb", "x", "xb"]\n_OpenTextMode = Literal["rt", "at", "wt", "xt"]\n@overloa... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\gzip.pyi | gzip.pyi | Other | 2,909 | 0.85 | 0.382979 | 0 | awesome-app | 355 | 2025-05-19T16:15:04.419990 | Apache-2.0 | false | 4bc29051205a1437e382be50cb43a1c8 |
import sys\nfrom _typeshed import ReadableBuffer\nfrom typing import AbstractSet, Optional\n\nclass _Hash(object):\n digest_size: int\n block_size: int\n\n # [Python documentation note] Changed in version 3.4: The name attribute has\n # been present in CPython since its inception, but until Python 3.4 was n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\hashlib.pyi | hashlib.pyi | Other | 4,195 | 0.95 | 0.308943 | 0.055046 | python-kit | 292 | 2023-08-27T01:49:10.580372 | BSD-3-Clause | false | b7bf792eeb0ee30e2000dcd5a1a0c2a7 |
from _typeshed import SupportsLessThan\nfrom typing import Any, Callable, Iterable, List, Optional, TypeVar\n\n_T = TypeVar("_T")\n\ndef heappush(__heap: List[_T], __item: _T) -> None: ...\ndef heappop(__heap: List[_T]) -> _T: ...\ndef heappushpop(__heap: List[_T], __item: _T) -> _T: ...\ndef heapify(__heap: List[_T]) ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\heapq.pyi | heapq.pyi | Other | 798 | 0.95 | 0.642857 | 0 | awesome-app | 655 | 2024-12-26T23:47:18.245760 | GPL-3.0 | false | 67c2b5188f318a96194535c573d8bbb5 |
import os\nimport types\nfrom _typeshed import StrPath\nfrom typing import IO, Any, List, Optional, Protocol, Tuple, TypeVar, Union\n\nfrom _imp import (\n acquire_lock as acquire_lock,\n create_dynamic as create_dynamic,\n get_frozen_object as get_frozen_object,\n init_frozen as init_frozen,\n is_builti... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\imp.pyi | imp.pyi | Other | 2,343 | 0.95 | 0.375 | 0.071429 | python-kit | 205 | 2023-12-09T22:49:39.182159 | GPL-3.0 | false | f8516c87d255cf11c2bb523591ab8359 |
import enum\nimport sys\nfrom collections import OrderedDict\nfrom types import CodeType, FrameType, FunctionType, MethodType, ModuleType, TracebackType\nfrom typing import (\n AbstractSet,\n Any,\n Callable,\n ClassVar,\n Dict,\n Generator,\n List,\n Mapping,\n NamedTuple,\n Optional,\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\inspect.pyi | inspect.pyi | Other | 9,929 | 0.95 | 0.307443 | 0.125954 | react-lib | 901 | 2024-03-15T01:08:08.455879 | Apache-2.0 | false | 8442261607cc37aa90cbd201eb20c8ed |
import builtins\nimport codecs\nimport sys\nfrom _typeshed import ReadableBuffer, WriteableBuffer\nfrom types import TracebackType\nfrom typing import IO, Any, BinaryIO, Callable, Iterable, Iterator, List, Optional, TextIO, Tuple, Type, TypeVar, Union\n\nDEFAULT_BUFFER_SIZE: int\n\nSEEK_SET: int\nSEEK_CUR: int\nSEEK_EN... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\io.pyi | io.pyi | Other | 7,499 | 0.95 | 0.553763 | 0.054217 | awesome-app | 537 | 2024-01-22T11:24:49.534213 | Apache-2.0 | false | e820f05c52a22263fdee40df965fa7ea |
import sys\nfrom typing import Any, Container, Generic, Iterable, Iterator, Optional, SupportsInt, Tuple, TypeVar, overload\n\n# Undocumented length constants\nIPV4LENGTH: int\nIPV6LENGTH: int\n\n_A = TypeVar("_A", IPv4Address, IPv6Address)\n_N = TypeVar("_N", IPv4Network, IPv6Network)\n_T = TypeVar("_T")\n\ndef ip_add... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\ipaddress.pyi | ipaddress.pyi | Other | 5,252 | 0.95 | 0.552632 | 0.007194 | vue-tools | 878 | 2024-01-15T23:48:56.685503 | BSD-3-Clause | false | 383f9a106cbc8dfba1091c3b5e124fdb |
import sys\nfrom typing import Any, Callable, Generic, Iterable, Iterator, Optional, Tuple, TypeVar, overload\nfrom typing_extensions import Literal\n\n_T = TypeVar("_T")\n_S = TypeVar("_S")\n_N = TypeVar("_N", int, float)\nPredicate = Callable[[_T], object]\n\ndef count(start: _N = ..., step: _N = ...) -> Iterator[_N]... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\itertools.pyi | itertools.pyi | Other | 4,524 | 0.95 | 0.394495 | 0.01 | python-kit | 673 | 2023-10-23T12:22:28.083337 | GPL-3.0 | false | 0c67fa944ad14743a832eefe080e12a2 |
import io\nfrom _typeshed import AnyPath, ReadableBuffer\nfrom typing import IO, Any, Mapping, Optional, Sequence, TextIO, TypeVar, Union, overload\nfrom typing_extensions import Literal\n\n_OpenBinaryWritingMode = Literal["w", "wb", "x", "xb", "a", "ab"]\n_OpenTextWritingMode = Literal["wt", "xt", "at"]\n\n_PathOrFile... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\lzma.pyi | lzma.pyi | Other | 4,580 | 0.95 | 0.219512 | 0.051613 | node-utils | 811 | 2024-08-03T08:28:45.533792 | BSD-3-Clause | false | d8ffb6b0f60b4d163919b9d0231ee3e2 |
import sys\nfrom typing import Union\n\nif sys.version_info < (3, 7):\n def url2pathname(pathname: str) -> str: ...\n def pathname2url(pathname: str) -> str: ...\n def _pncomp2url(component: Union[str, bytes]) -> str: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\macurl2path.pyi | macurl2path.pyi | Other | 225 | 0.85 | 0.571429 | 0 | react-lib | 133 | 2025-02-19T06:22:56.133588 | MIT | false | d2b79ea1a899b734e78934fe622f3a46 |
import datetime\nimport socket\nimport ssl\nimport sys\nfrom typing import IO, Any, Dict, Iterable, List, NamedTuple, Optional, Tuple, TypeVar, Union\n\n_SelfT = TypeVar("_SelfT", bound=_NNTPBase)\n_File = Union[IO[bytes], bytes, str, None]\n\nclass NNTPError(Exception):\n response: str\n\nclass NNTPReplyError(NNTPE... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\nntplib.pyi | nntplib.pyi | Other | 4,325 | 0.85 | 0.424779 | 0 | python-kit | 739 | 2023-12-22T00:51:29.098468 | BSD-3-Clause | false | cbe13595e6bd78fae83108cc17c4397a |
import os\nimport sys\nfrom _typeshed import AnyPath, BytesPath, StrPath\nfrom genericpath import exists as exists\nfrom typing import Any, AnyStr, Optional, Sequence, Tuple, TypeVar, overload\n\n_T = TypeVar("_T")\n\nif sys.version_info >= (3, 6):\n from builtins import _PathLike\n\n# ----- os.path variables -----\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\ntpath.pyi | ntpath.pyi | Other | 4,721 | 0.95 | 0.493056 | 0.077519 | python-kit | 209 | 2025-06-04T14:35:51.012033 | Apache-2.0 | false | d6525de34375179d12889a176a91255d |
def url2pathname(url: str) -> str: ...\ndef pathname2url(p: str) -> str: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\nturl2path.pyi | nturl2path.pyi | Other | 76 | 0.65 | 1 | 0 | node-utils | 681 | 2024-04-22T04:30:18.476715 | BSD-3-Clause | false | c55b91dc6ead4b3ae3b5695aa8a50131 |
import os\nimport sys\nfrom _typeshed import OpenBinaryMode, OpenBinaryModeReading, OpenBinaryModeUpdating, OpenBinaryModeWriting, OpenTextMode\nfrom io import BufferedRandom, BufferedReader, BufferedWriter, FileIO, TextIOWrapper\nfrom types import TracebackType\nfrom typing import IO, Any, BinaryIO, Generator, List, O... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\pathlib.pyi | pathlib.pyi | Other | 6,899 | 0.95 | 0.505618 | 0.035088 | node-utils | 810 | 2024-07-25T17:54:36.244474 | GPL-3.0 | false | 5c88c4d43267cd839370dbd003eb95b3 |
import os\n\nclass Template:\n def __init__(self) -> None: ...\n def reset(self) -> None: ...\n def clone(self) -> Template: ...\n def debug(self, flag: bool) -> None: ...\n def append(self, cmd: str, kind: str) -> None: ...\n def prepend(self, cmd: str, kind: str) -> None: ...\n def open(self, fil... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\pipes.pyi | pipes.pyi | Other | 518 | 0.95 | 0.666667 | 0.153846 | react-lib | 443 | 2024-04-01T01:07:25.457585 | BSD-3-Clause | false | 140157f67e8956b24f0c90bdd8911a4f |
import sys\n\nif sys.version_info < (3, 9):\n import os\n\n DEV_NULL = os.devnull\nfrom typing import NamedTuple, Optional, Tuple\n\nif sys.version_info >= (3, 8):\n def libc_ver(\n executable: Optional[str] = ..., lib: str = ..., version: str = ..., chunksize: int = ...\n ) -> Tuple[str, str]: ...\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\platform.pyi | platform.pyi | Other | 2,272 | 0.85 | 0.469697 | 0 | vue-tools | 798 | 2024-08-14T03:57:58.801955 | GPL-3.0 | false | e5f80c0a790351eadb6be656ec1b305f |
import sys\nfrom builtins import _PathLike # See comment in builtins\nfrom os import stat_result as stat_result\nfrom typing import Dict, List, NamedTuple, Optional, overload\n\nclass uname_result(NamedTuple):\n sysname: str\n nodename: str\n release: str\n version: str\n machine: str\n\nclass times_res... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\posix.pyi | posix.pyi | Other | 2,810 | 0.95 | 0.10303 | 0 | python-kit | 451 | 2025-05-31T21:59:09.594768 | Apache-2.0 | false | fc5a13bfaed14b3ccef19ac883b60f2e |
import os\nimport sys\nfrom _typeshed import AnyPath, BytesPath, StrPath\nfrom genericpath import exists as exists\nfrom typing import Any, AnyStr, Optional, Sequence, Tuple, TypeVar, overload\n\n_T = TypeVar("_T")\n\nif sys.version_info >= (3, 6):\n from builtins import _PathLike\n\n# ----- os.path variables -----\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\posixpath.pyi | posixpath.pyi | Other | 4,721 | 0.95 | 0.493056 | 0.077519 | node-utils | 210 | 2025-02-20T22:32:03.136558 | MIT | false | d6525de34375179d12889a176a91255d |
import sys\nfrom threading import Condition, Lock\nfrom typing import Any, Generic, Optional, TypeVar\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n_T = TypeVar("_T")\n\nclass Empty(Exception): ...\nclass Full(Exception): ...\n\nclass Queue(Generic[_T]):\n maxsize: int\n\n mutex: Lock ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\queue.pyi | queue.pyi | Other | 1,884 | 0.95 | 0.634615 | 0 | python-kit | 589 | 2024-09-12T10:20:35.853653 | MIT | false | c7784789fd2207b9e526cb7ac62977a9 |
import _random\nimport sys\nfrom typing import AbstractSet, Any, Callable, Iterable, List, MutableSequence, Optional, Sequence, Tuple, TypeVar, Union\n\n_T = TypeVar("_T")\n\nclass Random(_random.Random):\n def __init__(self, x: Any = ...) -> None: ...\n def seed(self, a: Any = ..., version: int = ...) -> None: .... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\random.pyi | random.pyi | Other | 3,901 | 0.95 | 0.655172 | 0.051282 | react-lib | 912 | 2024-06-03T22:05:29.656869 | BSD-3-Clause | false | 664640c952bb2e24edb9d5a76b1de7be |
import enum\nimport sys\nfrom typing import Any, AnyStr, Callable, Iterator, List, Optional, Tuple, Union, overload\n\n# ----- re variables and constants -----\nif sys.version_info >= (3, 7):\n from typing import Match as Match, Pattern as Pattern\nelse:\n from typing import Match, Pattern\n\nclass RegexFlag(enum... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\re.pyi | re.pyi | Other | 4,442 | 0.95 | 0.243902 | 0.06087 | vue-tools | 70 | 2023-07-14T14:08:58.821142 | GPL-3.0 | false | 5208b26258d7a0ed297409bac8386abc |
from array import array\nfrom typing import Any, Callable, Deque, Dict, FrozenSet, List, Set, Tuple\n\n_ReprFunc = Callable[[Any], str]\n\ndef recursive_repr(fillvalue: str = ...) -> Callable[[_ReprFunc], _ReprFunc]: ...\n\nclass Repr:\n maxlevel: int\n maxdict: int\n maxlist: int\n maxtuple: int\n maxse... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\reprlib.pyi | reprlib.pyi | Other | 1,228 | 0.85 | 0.444444 | 0 | node-utils | 112 | 2024-01-19T20:22:59.989750 | GPL-3.0 | false | dacd356bcc60d17dd831ea0b2cea776a |
import sys\nfrom typing import NamedTuple, Tuple, overload\n\nRLIMIT_AS: int\nRLIMIT_CORE: int\nRLIMIT_CPU: int\nRLIMIT_DATA: int\nRLIMIT_FSIZE: int\nRLIMIT_MEMLOCK: int\nRLIMIT_NOFILE: int\nRLIMIT_NPROC: int\nRLIMIT_RSS: int\nRLIMIT_STACK: int\nRLIM_INFINITY: int\nRUSAGE_CHILDREN: int\nRUSAGE_SELF: int\nif sys.platfor... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\resource.pyi | resource.pyi | Other | 1,243 | 0.85 | 0.163636 | 0 | node-utils | 79 | 2024-08-16T16:21:50.333253 | GPL-3.0 | false | 84e08c76af05095632312e87ca39707d |
from types import ModuleType\nfrom typing import Any, Dict, Optional, TypeVar\n\n_T = TypeVar("_T")\n\nclass _TempModule:\n mod_name: str = ...\n module: ModuleType = ...\n def __init__(self, mod_name: str) -> None: ...\n def __enter__(self: _T) -> _T: ...\n def __exit__(self, *args: Any) -> None: ...\n\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\runpy.pyi | runpy.pyi | Other | 746 | 0.85 | 0.454545 | 0 | awesome-app | 541 | 2024-12-04T23:26:43.586699 | Apache-2.0 | false | b9a333ab82968e761d99b5e6580d3c60 |
from hmac import compare_digest as compare_digest\nfrom random import SystemRandom as SystemRandom\nfrom typing import Optional, Sequence, TypeVar\n\n_T = TypeVar("_T")\n\ndef randbelow(exclusive_upper_bound: int) -> int: ...\ndef randbits(k: int) -> int: ...\ndef choice(seq: Sequence[_T]) -> _T: ...\ndef token_bytes(n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\secrets.pyi | secrets.pyi | Other | 467 | 0.85 | 0.5 | 0 | python-kit | 77 | 2025-01-07T04:03:30.898403 | GPL-3.0 | false | 2a04cbebe9d004ca876717528906db86 |
import sys\nfrom _typeshed import FileDescriptor, FileDescriptorLike\nfrom abc import ABCMeta, abstractmethod\nfrom typing import Any, List, Mapping, NamedTuple, Optional, Tuple\n\n_EventMask = int\n\nEVENT_READ: _EventMask\nEVENT_WRITE: _EventMask\n\nclass SelectorKey(NamedTuple):\n fileobj: FileDescriptorLike\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\selectors.pyi | selectors.pyi | Other | 3,644 | 0.85 | 0.652174 | 0 | python-kit | 531 | 2024-12-03T21:41:54.827837 | GPL-3.0 | false | f256858a29efe6251a8b1f9e6a0fff6b |
import collections\nfrom typing import Any, Dict, Iterator, Optional, Tuple\n\nclass Shelf(collections.MutableMapping[Any, Any]):\n def __init__(\n self, dict: Dict[bytes, Any], protocol: Optional[int] = ..., writeback: bool = ..., keyencoding: str = ...\n ) -> None: ...\n def __iter__(self) -> Iterator... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\shelve.pyi | shelve.pyi | Other | 1,605 | 0.95 | 0.705882 | 0 | node-utils | 200 | 2023-09-02T02:02:44.963487 | Apache-2.0 | false | dd4cfbb40ed21b0e800a3a072e686f8b |
import sys\nfrom typing import Any, Iterable, List, Optional, TextIO, Tuple, TypeVar, Union\n\ndef split(s: str, comments: bool = ..., posix: bool = ...) -> List[str]: ...\n\nif sys.version_info >= (3, 8):\n def join(split_command: Iterable[str]) -> str: ...\n\ndef quote(s: str) -> str: ...\n\n_SLT = TypeVar("_SLT",... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\shlex.pyi | shlex.pyi | Other | 1,325 | 0.95 | 0.333333 | 0.025 | vue-tools | 748 | 2024-07-22T13:42:52.044251 | BSD-3-Clause | false | 17c1692d89ea5ce7fcdc063ecdd1d93c |
import sys\nfrom enum import IntEnum\nfrom types import FrameType\nfrom typing import Any, Callable, Iterable, Optional, Set, Tuple, Union\n\nif sys.platform != "win32":\n class ItimerError(IOError): ...\n ITIMER_PROF: int\n ITIMER_REAL: int\n ITIMER_VIRTUAL: int\n\nNSIG: int\n\nclass Signals(IntEnum):\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\signal.pyi | signal.pyi | Other | 5,209 | 0.85 | 0.345361 | 0 | node-utils | 125 | 2025-03-08T07:46:52.235822 | Apache-2.0 | false | 6db14f7ebc1f6d3f7b8ddd47ddcf5680 |
from email.message import Message as _Message\nfrom socket import socket\nfrom ssl import SSLContext\nfrom types import TracebackType\nfrom typing import Any, Dict, List, Optional, Pattern, Protocol, Sequence, Tuple, Type, Union, overload\n\n_Reply = Tuple[int, bytes]\n_SendErrs = Dict[str, _Reply]\n# Should match sour... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\smtplib.pyi | smtplib.pyi | Other | 5,606 | 0.95 | 0.352201 | 0.013793 | react-lib | 885 | 2023-12-04T09:21:48.574230 | MIT | false | 7e117004c509695810f65977744bef99 |
import sys\nimport types\nfrom socket import SocketType\nfrom typing import Any, BinaryIO, Callable, ClassVar, List, Optional, Tuple, Type, Union\n\nclass BaseServer:\n address_family: int\n RequestHandlerClass: Callable[..., BaseRequestHandler]\n server_address: Tuple[str, int]\n socket: SocketType\n al... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\socketserver.pyi | socketserver.pyi | Other | 5,367 | 0.95 | 0.451128 | 0.049587 | react-lib | 582 | 2023-10-14T18:34:47.369440 | Apache-2.0 | false | 807a49ff326488254ee439eb902e055b |
from typing import List, NamedTuple\n\nclass struct_spwd(NamedTuple):\n sp_namp: str\n sp_pwdp: str\n sp_lstchg: int\n sp_min: int\n sp_max: int\n sp_warn: int\n sp_inact: int\n sp_expire: int\n sp_flag: int\n\ndef getspall() -> List[struct_spwd]: ...\ndef getspnam(name: str) -> struct_spwd: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\spwd.pyi | spwd.pyi | Other | 310 | 0.85 | 0.2 | 0 | python-kit | 122 | 2025-06-23T13:30:59.964257 | Apache-2.0 | false | d8cf23bd4d72e1021e76d1b05bd52c37 |
from typing import Any, Dict, List, Optional, Union\n\nMAGIC: int\n\nclass error(Exception):\n msg: str\n pattern: Optional[Union[str, bytes]]\n pos: Optional[int]\n lineno: int\n colno: int\n def __init__(self, msg: str, pattern: Union[str, bytes] = ..., pos: int = ...) -> None: ...\n\nclass _NamedIn... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\sre_constants.pyi | sre_constants.pyi | Other | 3,348 | 0.95 | 0.036036 | 0.038835 | python-kit | 780 | 2025-07-02T07:13:48.477753 | MIT | false | 2d7b775775f233de1375724802a3080e |
import sys\nfrom sre_constants import _NamedIntConstant as _NIC, error as _Error\nfrom typing import Any, Dict, FrozenSet, Iterable, List, Match, Optional, Pattern as _Pattern, Tuple, Union, overload\n\nSPECIAL_CHARS: str\nREPEAT_CHARS: str\nDIGITS: FrozenSet[str]\nOCTDIGITS: FrozenSet[str]\nHEXDIGITS: FrozenSet[str]\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\sre_parse.pyi | sre_parse.pyi | Other | 3,820 | 0.85 | 0.415842 | 0 | awesome-app | 386 | 2024-05-17T17:28:17.048590 | MIT | false | c219cb9e50fbcaa995375c247846bf5a |
import sys\n\ndef S_ISDIR(mode: int) -> bool: ...\ndef S_ISCHR(mode: int) -> bool: ...\ndef S_ISBLK(mode: int) -> bool: ...\ndef S_ISREG(mode: int) -> bool: ...\ndef S_ISFIFO(mode: int) -> bool: ...\ndef S_ISLNK(mode: int) -> bool: ...\ndef S_ISSOCK(mode: int) -> bool: ...\ndef S_IMODE(mode: int) -> int: ...\ndef S_IFM... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\stat.pyi | stat.pyi | Other | 1,805 | 0.95 | 0.131868 | 0 | vue-tools | 972 | 2024-10-10T02:51:44.247465 | MIT | false | 4a91add053df262c4ca2115ac96b33c2 |
import sys\nfrom _typeshed import SupportsLessThanT\nfrom decimal import Decimal\nfrom fractions import Fraction\nfrom typing import Any, Hashable, Iterable, List, Optional, SupportsFloat, Type, TypeVar, Union\n\n_T = TypeVar("_T")\n# Most functions in this module accept homogeneous collections of one of these types\n_... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\statistics.pyi | statistics.pyi | Other | 3,149 | 0.95 | 0.611111 | 0.032258 | node-utils | 994 | 2025-02-20T05:09:32.132104 | GPL-3.0 | false | 6f33c5daa9d89815bb7d3ea08d1d4c7f |
from typing import Any, Iterable, Mapping, Optional, Sequence, Tuple, Union\n\nascii_letters: str\nascii_lowercase: str\nascii_uppercase: str\ndigits: str\nhexdigits: str\noctdigits: str\npunctuation: str\nprintable: str\nwhitespace: str\n\ndef capwords(s: str, sep: Optional[str] = ...) -> str: ...\n\nclass Template:\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\string.pyi | string.pyi | Other | 1,423 | 0.95 | 0.466667 | 0.038462 | react-lib | 621 | 2024-12-26T17:17:23.114685 | BSD-3-Clause | false | 4bcc13c93b6875bf3ccc90fe34987963 |
import sys\nfrom _typeshed import AnyPath\nfrom types import TracebackType\nfrom typing import IO, Any, AnyStr, Callable, Generic, Mapping, Optional, Sequence, Tuple, Type, TypeVar, Union, overload\nfrom typing_extensions import Literal\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n# We prefe... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\subprocess.pyi | subprocess.pyi | Other | 34,320 | 0.95 | 0.072106 | 0.072534 | awesome-app | 690 | 2025-04-18T19:47:21.641944 | Apache-2.0 | false | 2d190a66931c4a3843fb51df6bbc7b95 |
from typing import Dict\n\nsingle_input: int\nfile_input: int\neval_input: int\ndecorator: int\ndecorators: int\ndecorated: int\nasync_funcdef: int\nfuncdef: int\nparameters: int\ntypedargslist: int\ntfpdef: int\nvarargslist: int\nvfpdef: int\nstmt: int\nsimple_stmt: int\nsmall_stmt: int\nexpr_stmt: int\nannassign: int... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\symbol.pyi | symbol.pyi | Other | 1,383 | 0.85 | 0 | 0 | react-lib | 437 | 2023-07-19T07:55:35.817456 | MIT | false | 5fd786b6215c8e381b8fecc66d11729b |
import sys\nfrom builtins import object as _object\nfrom importlib.abc import MetaPathFinder, PathEntryFinder\nfrom types import FrameType, ModuleType, TracebackType\nfrom typing import (\n Any,\n AsyncGenerator,\n Callable,\n Dict,\n List,\n NoReturn,\n Optional,\n Sequence,\n TextIO,\n T... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\sys.pyi | sys.pyi | Other | 6,337 | 0.95 | 0.246809 | 0.029851 | vue-tools | 436 | 2024-06-01T16:39:30.257283 | GPL-3.0 | false | b7bb9835d88ea8f0cb52b3c3df4de4ca |
import os\nimport sys\nfrom types import TracebackType\nfrom typing import IO, Any, AnyStr, Generic, Iterable, Iterator, List, Optional, Tuple, Type, TypeVar, Union, overload\nfrom typing_extensions import Literal\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n# global variables\nTMP_MAX: int\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\tempfile.pyi | tempfile.pyi | Other | 11,371 | 0.95 | 0.200658 | 0.057627 | python-kit | 738 | 2024-05-02T02:26:32.460939 | GPL-3.0 | false | e6b89b6ff371188b36b63e670e824eaf |
from typing import Callable, Dict, List, Optional, Pattern\n\nclass TextWrapper:\n width: int = ...\n initial_indent: str = ...\n subsequent_indent: str = ...\n expand_tabs: bool = ...\n replace_whitespace: bool = ...\n fix_sentence_endings: bool = ...\n drop_whitespace: bool = ...\n break_long_... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\textwrap.pyi | textwrap.pyi | Other | 3,234 | 0.95 | 0.16 | 0.072165 | python-kit | 463 | 2024-02-09T13:44:13.927888 | BSD-3-Clause | false | 94e3675891b2ee6c5a6646ce11bb1870 |
import sys\nfrom builtins import open as _builtin_open\nfrom os import PathLike\nfrom token import * # noqa: F403\nfrom typing import (\n Any,\n Callable,\n Dict,\n Generator,\n Iterable,\n List,\n NamedTuple,\n Optional,\n Pattern,\n Sequence,\n Set,\n TextIO,\n Tuple,\n Unio... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\tokenize.pyi | tokenize.pyi | Other | 3,110 | 0.95 | 0.189655 | 0.03125 | node-utils | 711 | 2025-04-12T14:25:53.012033 | Apache-2.0 | false | 26fe65b83ac9957e99853d2bf422220e |
import sys\nfrom typing import List, Optional, Sequence, Tuple, Union, overload\n\nfrom _tracemalloc import *\n\ndef get_object_traceback(obj: object) -> Optional[Traceback]: ...\ndef take_snapshot() -> Snapshot: ...\n\nclass DomainFilter:\n inclusive: bool\n domain: int\n def __init__(self, inclusive: bool, d... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\tracemalloc.pyi | tracemalloc.pyi | Other | 2,795 | 0.85 | 0.372093 | 0 | python-kit | 112 | 2025-02-28T09:26:01.185259 | Apache-2.0 | false | bef58069eb5c8d80bfcf1e7be19c1370 |
import sys\nfrom typing import (\n Any,\n Awaitable,\n Callable,\n Dict,\n Generic,\n Iterable,\n Iterator,\n Mapping,\n Optional,\n Tuple,\n Type,\n TypeVar,\n Union,\n overload,\n)\nfrom typing_extensions import Literal, final\n\n# ModuleType is exported from this module, but... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\types.pyi | types.pyi | Other | 11,027 | 0.95 | 0.290419 | 0.019868 | react-lib | 649 | 2024-06-14T14:52:48.695063 | BSD-3-Clause | false | 7b7bbe7d3fa7418e5e8c57658afa0a11 |
import collections # Needed by aliases like DefaultDict, see mypy issue 2986\nimport sys\nfrom abc import ABCMeta, abstractmethod\nfrom types import BuiltinFunctionType, CodeType, FrameType, FunctionType, MethodType, ModuleType, TracebackType\n\nif sys.version_info >= (3, 7):\n from types import MethodDescriptorTyp... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\typing.pyi | typing.pyi | Other | 25,040 | 0.95 | 0.438137 | 0.081833 | awesome-app | 878 | 2024-01-07T20:03:41.435853 | GPL-3.0 | false | 658c140b2fbc4dd88fbef6062d6d0562 |
import sys\nfrom types import TracebackType\nfrom typing import Any, Optional, Tuple, Type, Union\n\n_KeyType = Union[HKEYType, int]\n\ndef CloseKey(__hkey: _KeyType) -> None: ...\ndef ConnectRegistry(__computer_name: Optional[str], __key: _KeyType) -> HKEYType: ...\ndef CreateKey(__key: _KeyType, __sub_key: Optional[s... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\winreg.pyi | winreg.pyi | Other | 3,779 | 0.95 | 0.33 | 0.010989 | react-lib | 722 | 2025-02-15T06:28:27.036546 | GPL-3.0 | false | 3ee6e27f6dbef56f922d0f52a3187f55 |
from typing import Any\n\nclass Null: ...\nclass Str: ...\n\nclass Xxo:\n def demo(self) -> None: ...\n\nclass error: ...\n\ndef foo(__i: int, __j: int) -> Any: ...\ndef new() -> Xxo: ...\ndef roj(__b: Any) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\xxlimited.pyi | xxlimited.pyi | Other | 211 | 0.85 | 0.615385 | 0 | python-kit | 893 | 2024-12-04T01:03:45.967496 | GPL-3.0 | false | 1aa63bf6dbe3297c1fb221d819921c3b |
import sys\nfrom pathlib import Path\nfrom typing import BinaryIO, Callable, Optional, Union\n\n_Path = Union[str, Path, BinaryIO]\n\nclass ZipAppError(ValueError): ...\n\nif sys.version_info >= (3, 7):\n def create_archive(\n source: _Path,\n target: Optional[_Path] = ...,\n interpreter: Option... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\zipapp.pyi | zipapp.pyi | Other | 678 | 0.85 | 0.208333 | 0 | awesome-app | 504 | 2024-04-23T18:58:28.127084 | BSD-3-Clause | false | f94de2f6eb5e640ed2cd84cb6daeec93 |
import sys\nimport typing\nfrom typing import Any, ClassVar, Optional\n\nPyCF_ONLY_AST: int\nif sys.version_info >= (3, 8):\n PyCF_TYPE_COMMENTS: int\n PyCF_ALLOW_TOP_LEVEL_AWAIT: int\n\n_identifier = str\n\nclass AST:\n _attributes: ClassVar[typing.Tuple[str, ...]]\n _fields: ClassVar[typing.Tuple[str, ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_ast.pyi | _ast.pyi | Other | 7,851 | 0.95 | 0.351064 | 0.006601 | python-kit | 487 | 2025-02-15T12:04:03.804238 | MIT | false | 965fa4cff7ac61e41ccee98b933de6e8 |
def getpreferredencoding(do_setlocale: bool = ...) -> str: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_bootlocale.pyi | _bootlocale.pyi | Other | 63 | 0.65 | 1 | 0 | react-lib | 106 | 2023-10-29T22:12:08.639493 | BSD-3-Clause | false | 2e49873b2546c9f99bdac18a662c4833 |
from typing import Dict, Tuple\n\nIMPORT_MAPPING: Dict[str, str]\nNAME_MAPPING: Dict[Tuple[str, str], Tuple[str, str]]\nPYTHON2_EXCEPTIONS: Tuple[str, ...]\nMULTIPROCESSING_EXCEPTIONS: Tuple[str, ...]\nREVERSE_IMPORT_MAPPING: Dict[str, str]\nREVERSE_NAME_MAPPING: Dict[Tuple[str, str], Tuple[str, str]]\nPYTHON3_OSERROR_... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_compat_pickle.pyi | _compat_pickle.pyi | Other | 388 | 0.85 | 0 | 0 | node-utils | 154 | 2023-08-15T18:03:14.796893 | Apache-2.0 | false | f17772c76d97dea1a04edcb42023cfa3 |
from _typeshed import WriteableBuffer\nfrom io import BufferedIOBase, RawIOBase\nfrom typing import Any, Callable, Tuple, Type, Union\n\nBUFFER_SIZE: Any\n\nclass BaseStream(BufferedIOBase): ...\n\nclass DecompressReader(RawIOBase):\n def __init__(\n self,\n fp: RawIOBase,\n decomp_factory: Call... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_compression.pyi | _compression.pyi | Other | 761 | 0.85 | 0.434783 | 0.05 | awesome-app | 927 | 2023-12-24T21:01:24.568228 | Apache-2.0 | false | a043dbc425dae7736507637686684159 |
from decimal import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_decimal.pyi | _decimal.pyi | Other | 22 | 0.65 | 0 | 0 | react-lib | 252 | 2024-01-12T19:08:05.968093 | Apache-2.0 | false | 7ee242794a1cb0aed075b20d3d11a8b1 |
from typing import Any, Callable, Dict, NoReturn, Optional, Tuple\n\nTIMEOUT_MAX: int\nerror = RuntimeError\n\ndef start_new_thread(function: Callable[..., Any], args: Tuple[Any, ...], kwargs: Dict[str, Any] = ...) -> None: ...\ndef exit() -> NoReturn: ...\ndef get_ident() -> int: ...\ndef allocate_lock() -> LockType: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_dummy_thread.pyi | _dummy_thread.pyi | Other | 800 | 0.85 | 0.666667 | 0 | awesome-app | 884 | 2024-08-05T14:53:34.642771 | Apache-2.0 | false | fc17baa4b992ade730abe0cd99e7f4b7 |
import types\nfrom importlib.machinery import ModuleSpec\nfrom typing import Any, List\n\ndef create_builtin(__spec: ModuleSpec) -> types.ModuleType: ...\ndef create_dynamic(__spec: ModuleSpec, __file: Any = ...) -> None: ...\ndef acquire_lock() -> None: ...\ndef exec_builtin(__mod: types.ModuleType) -> int: ...\ndef e... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_imp.pyi | _imp.pyi | Other | 705 | 0.85 | 0.764706 | 0 | python-kit | 952 | 2025-01-28T20:32:10.623065 | BSD-3-Clause | false | a84613816cb21042356391313376c502 |
# ModuleSpec, ModuleType, Loader are part of a dependency cycle.\n# They are officially defined/exported in other places:\n#\n# - ModuleType in types\n# - Loader in importlib.abc\n# - ModuleSpec in importlib.machinery (3.4 and later only)\n#\n# _Loader is the PEP-451-defined interface for a loader type/object.\n\nfrom ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_importlib_modulespec.pyi | _importlib_modulespec.pyi | Other | 1,586 | 0.95 | 0.28 | 0.244444 | react-lib | 761 | 2024-01-10T00:41:37.424244 | MIT | false | c998035b2906019358aeb71c9f2aba96 |
from typing import Any, Callable, Dict, Optional, Tuple\n\nclass make_encoder:\n sort_keys: Any\n skipkeys: Any\n key_separator: Any\n indent: Any\n markers: Any\n default: Any\n encoder: Any\n item_separator: Any\n def __init__(\n self,\n markers: Optional[Dict[int, Any]],\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_json.pyi | _json.pyi | Other | 1,124 | 0.95 | 0.210526 | 0.028571 | python-kit | 206 | 2024-04-10T20:09:44.291378 | Apache-2.0 | false | a2696599f7982531616e6d33892c44c2 |
from typing import Tuple\n\nclass ParserBase:\n def __init__(self) -> None: ...\n def error(self, message: str) -> None: ...\n def reset(self) -> None: ...\n def getpos(self) -> Tuple[int, int]: ...\n def unknown_decl(self, data: str) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_markupbase.pyi | _markupbase.pyi | Other | 256 | 0.85 | 0.75 | 0 | python-kit | 596 | 2023-08-17T23:13:25.001173 | Apache-2.0 | false | f04a7280edf27f12780e9c57ef5dda5d |
# In reality the import is the other way around, but this way we can keep the operator stub in 2and3\nfrom operator import (\n abs as abs,\n add as add,\n and_ as and_,\n attrgetter as attrgetter,\n concat as concat,\n contains as contains,\n countOf as countOf,\n delitem as delitem,\n eq as ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_operator.pyi | _operator.pyi | Other | 1,310 | 0.95 | 0.016667 | 0.016949 | vue-tools | 898 | 2023-11-27T23:21:05.030853 | Apache-2.0 | false | 393764e81f818c31b8312ef920ef720a |
from typing import Dict, Iterable, List, Optional, Sequence, Tuple, TypeVar, Union\n\n_T = TypeVar("_T")\n_K = TypeVar("_K")\n_V = TypeVar("_V")\n\n__all__: List[str]\n\n_UNIVERSAL_CONFIG_VARS: Tuple[str, ...] # undocumented\n_COMPILER_CONFIG_VARS: Tuple[str, ...] # undocumented\n_INITPRE: str # undocumented\n\ndef ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_osx_support.pyi | _osx_support.pyi | Other | 1,796 | 0.95 | 0.484848 | 0 | python-kit | 762 | 2024-04-25T11:40:34.215082 | MIT | false | a25220e4c14c8d194ee60d6bba7a81bd |
# NOTE: These are incomplete!\n\nfrom typing import Callable, Sequence, Tuple\n\ndef cloexec_pipe() -> Tuple[int, int]: ...\ndef fork_exec(\n args: Sequence[str],\n executable_list: Sequence[bytes],\n close_fds: bool,\n fds_to_keep: Sequence[int],\n cwd: str,\n env_list: Sequence[bytes],\n p2cread:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_posixsubprocess.pyi | _posixsubprocess.pyi | Other | 557 | 0.95 | 0.083333 | 0.045455 | node-utils | 663 | 2025-05-11T12:13:15.720944 | MIT | false | 932ada6430d329fb57564703c87e12a5 |
# This is a slight lie, the implementations aren't exactly identical\n# However, in all likelihood, the differences are inconsequential\nfrom decimal import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_pydecimal.pyi | _pydecimal.pyi | Other | 157 | 0.95 | 0 | 0.666667 | python-kit | 379 | 2023-07-14T17:22:00.369204 | Apache-2.0 | false | 74ebdca5a4e9c3124731b1501864b79f |
from typing import ClassVar, Iterable, NoReturn, Optional\nfrom typing_extensions import Literal\n\nclass Quitter:\n name: str\n eof: str\n def __init__(self, name: str, eof: str) -> None: ...\n def __call__(self, code: Optional[int] = ...) -> NoReturn: ...\n\nclass _Printer:\n MAXLINES: ClassVar[Literal... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_sitebuiltins.pyi | _sitebuiltins.pyi | Other | 534 | 0.85 | 0.5 | 0 | react-lib | 145 | 2025-04-28T10:24:59.111827 | MIT | false | eb5a3f71a6069c8990c83cf3c2761c92 |
SF_APPEND: int\nSF_ARCHIVED: int\nSF_IMMUTABLE: int\nSF_NOUNLINK: int\nSF_SNAPSHOT: int\nST_ATIME: int\nST_CTIME: int\nST_DEV: int\nST_GID: int\nST_INO: int\nST_MODE: int\nST_MTIME: int\nST_NLINK: int\nST_SIZE: int\nST_UID: int\nS_ENFMT: int\nS_IEXEC: int\nS_IFBLK: int\nS_IFCHR: int\nS_IFDIR: int\nS_IFDOOR: int\nS_IFIF... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_stat.pyi | _stat.pyi | Other | 1,179 | 0.85 | 0.2 | 0 | python-kit | 360 | 2023-11-03T06:49:14.688840 | BSD-3-Clause | false | 930b39e1c9d727c7a1ee0b8447c55e8b |
import sys\nfrom threading import Thread\nfrom types import TracebackType\nfrom typing import Any, Callable, Dict, NoReturn, Optional, Tuple, Type\n\nerror = RuntimeError\n\ndef _count() -> int: ...\n\n_dangling: Any\n\nclass LockType:\n def acquire(self, blocking: bool = ..., timeout: float = ...) -> bool: ...\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_thread.pyi | _thread.pyi | Other | 1,451 | 0.95 | 0.512195 | 0 | awesome-app | 94 | 2025-04-05T03:14:32.137948 | Apache-2.0 | false | 9cb863f87d4a08c210eca21121e61bde |
from typing import Any, Dict, Tuple\nfrom weakref import ReferenceType\n\nlocaldict = Dict[Any, Any]\n\nclass _localimpl:\n key: str\n dicts: Dict[int, Tuple[ReferenceType[Any], localdict]]\n def __init__(self) -> None: ...\n def get_dict(self) -> localdict: ...\n def create_dict(self) -> localdict: ...\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_threading_local.pyi | _threading_local.pyi | Other | 490 | 0.85 | 0.5 | 0 | awesome-app | 463 | 2025-06-11T13:03:25.876881 | BSD-3-Clause | false | a466ff9aef3dd0a5a21bbf7760bec02a |
from typing import Any, Tuple, Union\n\n# _tkinter is meant to be only used internally by tkinter, but some tkinter\n# functions e.g. return _tkinter.Tcl_Obj objects. Tcl_Obj represents a Tcl\n# object that hasn't been converted to a string.\n#\n# There are not many ways to get Tcl_Objs from tkinter, and I'm not sure i... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_tkinter.pyi | _tkinter.pyi | Other | 2,531 | 0.95 | 0.075269 | 0.372093 | python-kit | 962 | 2024-10-18T04:49:20.188336 | GPL-3.0 | false | e4dcc4df899a4c9f77d0cdec5db760b8 |
import sys\nfrom tracemalloc import _FrameTupleT, _TraceTupleT\nfrom typing import Optional, Sequence, Tuple\n\ndef _get_object_traceback(__obj: object) -> Optional[Sequence[_FrameTupleT]]: ...\ndef _get_traces() -> Sequence[_TraceTupleT]: ...\ndef clear_traces() -> None: ...\ndef get_traceback_limit() -> int: ...\ndef... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_tracemalloc.pyi | _tracemalloc.pyi | Other | 563 | 0.85 | 0.647059 | 0 | node-utils | 83 | 2024-12-27T17:03:23.812336 | Apache-2.0 | false | 6cecaf5025e5372c2e8a3c5594dca226 |
import sys\nfrom typing import Any, Dict, NoReturn, Optional, Sequence, Tuple, Union, overload\nfrom typing_extensions import Literal\n\nCREATE_NEW_CONSOLE: int\nCREATE_NEW_PROCESS_GROUP: int\nDUPLICATE_CLOSE_SOURCE: int\nDUPLICATE_SAME_ACCESS: int\nERROR_ALREADY_EXISTS: int\nERROR_BROKEN_PIPE: int\nERROR_IO_PENDING: i... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\_winapi.pyi | _winapi.pyi | Other | 4,507 | 0.85 | 0.276119 | 0 | react-lib | 381 | 2024-06-12T10:07:44.234173 | BSD-3-Clause | false | 5d81e448b957530d7a194fb114bfb136 |
import ssl\nimport sys\nfrom _typeshed import FileDescriptorLike\nfrom abc import ABCMeta\nfrom asyncio.events import AbstractEventLoop, AbstractServer, Handle, TimerHandle\nfrom asyncio.futures import Future\nfrom asyncio.protocols import BaseProtocol\nfrom asyncio.tasks import Task\nfrom asyncio.transports import Bas... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\base_events.pyi | base_events.pyi | Other | 14,112 | 0.95 | 0.223164 | 0.085714 | python-kit | 416 | 2025-02-13T22:11:17.150985 | Apache-2.0 | false | d3e174711a88aac3e797f3d80c063f3f |
import sys\nfrom typing import Any, Callable, List, Sequence, Tuple\nfrom typing_extensions import Literal\n\nif sys.version_info >= (3, 7):\n from contextvars import Context\n\nfrom . import futures\n\n_PENDING: Literal["PENDING"] # undocumented\n_CANCELLED: Literal["CANCELLED"] # undocumented\n_FINISHED: Literal... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\base_futures.pyi | base_futures.pyi | Other | 733 | 0.95 | 0.272727 | 0 | react-lib | 802 | 2023-12-20T08:03:27.315888 | Apache-2.0 | false | 62dd4d57dd1cf3c5731d62da0d2afc48 |
import subprocess\nfrom typing import IO, Any, Callable, Deque, Dict, List, Optional, Sequence, Tuple, Union\n\nfrom . import events, futures, protocols, transports\n\n_File = Optional[Union[int, IO[Any]]]\n\nclass BaseSubprocessTransport(transports.SubprocessTransport):\n\n _closed: bool # undocumented\n _proto... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\base_subprocess.pyi | base_subprocess.pyi | Other | 3,239 | 0.95 | 0.416667 | 0.030303 | node-utils | 177 | 2024-02-01T19:05:04.759472 | MIT | false | 15cfec37b0ceb4cb89826e31275fbc8e |
from _typeshed import AnyPath\nfrom types import FrameType\nfrom typing import Any, List, Optional\n\nfrom . import tasks\n\ndef _task_repr_info(task: tasks.Task[Any]) -> List[str]: ... # undocumented\ndef _task_get_stack(task: tasks.Task[Any], limit: Optional[int]) -> List[FrameType]: ... # undocumented\ndef _task_p... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\base_tasks.pyi | base_tasks.pyi | Other | 412 | 0.95 | 0.333333 | 0 | node-utils | 632 | 2024-03-18T10:27:44.728822 | MIT | false | 947998f5e79861cb5093d32b4818ea0b |
import sys\nfrom typing import List\n\nif sys.version_info < (3, 7):\n PY34: bool\n PY35: bool\n PY352: bool\n def flatten_list_bytes(list_of_data: List[bytes]) -> bytes: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\compat.pyi | compat.pyi | Other | 180 | 0.85 | 0.25 | 0 | python-kit | 526 | 2025-02-13T00:55:19.254070 | GPL-3.0 | false | 71311269c1a8592308f156ba5dcbdc4b |
import enum\nimport sys\n\nLOG_THRESHOLD_FOR_CONNLOST_WRITES: int\nACCEPT_RETRY_DELAY: int\nDEBUG_STACK_DEPTH: int\nif sys.version_info >= (3, 7):\n SSL_HANDSHAKE_TIMEOUT: float\n SENDFILE_FALLBACK_READBUFFER_SIZE: int\n\nclass _SendfileMode(enum.Enum):\n UNSUPPORTED: int = ...\n TRY_NATIVE: int = ...\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\constants.pyi | constants.pyi | Other | 327 | 0.85 | 0.142857 | 0 | python-kit | 952 | 2024-06-12T15:03:58.187446 | GPL-3.0 | false | c22bd57f1e530e17bf98f7e6aaa20cbf |
from typing import Any, Callable, TypeVar\n\n_F = TypeVar("_F", bound=Callable[..., Any])\n\ndef coroutine(func: _F) -> _F: ...\ndef iscoroutinefunction(func: Callable[..., Any]) -> bool: ...\ndef iscoroutine(obj: Any) -> bool: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\coroutines.pyi | coroutines.pyi | Other | 226 | 0.85 | 0.428571 | 0 | awesome-app | 193 | 2023-07-29T16:05:49.531757 | GPL-3.0 | false | a658ac39ba8fed22cc65738ceb3122f3 |
import ssl\nimport sys\nfrom _typeshed import FileDescriptorLike\nfrom abc import ABCMeta, abstractmethod\nfrom asyncio.futures import Future\nfrom asyncio.protocols import BaseProtocol\nfrom asyncio.tasks import Task\nfrom asyncio.transports import BaseTransport\nfrom asyncio.unix_events import AbstractChildWatcher\nf... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\events.pyi | events.pyi | Other | 18,648 | 0.95 | 0.249004 | 0.069106 | node-utils | 595 | 2024-10-25T17:32:47.477675 | GPL-3.0 | false | 4572fd284d055866bd09c515fcc7be71 |
import sys\nfrom typing import Optional\n\nif sys.version_info >= (3, 8):\n class CancelledError(BaseException): ...\n class TimeoutError(Exception): ...\n class InvalidStateError(Exception): ...\n class SendfileNotAvailableError(RuntimeError): ...\n class IncompleteReadError(EOFError):\n expected... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\exceptions.pyi | exceptions.pyi | Other | 562 | 0.85 | 0.6 | 0 | awesome-app | 336 | 2024-12-04T15:00:28.098379 | Apache-2.0 | false | 29c3beb7ac616ed75f73386a63ec5022 |
import functools\nimport sys\nimport traceback\nfrom types import FrameType, FunctionType\nfrom typing import Any, Dict, Iterable, Optional, Tuple, Union, overload\n\nclass _HasWrapper:\n __wrapper__: Union[_HasWrapper, FunctionType]\n\n_FuncType = Union[FunctionType, _HasWrapper, functools.partial, functools.partia... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\format_helpers.pyi | format_helpers.pyi | Other | 921 | 0.85 | 0.4 | 0 | react-lib | 236 | 2024-01-14T08:37:13.097673 | Apache-2.0 | false | f05246f28eef791850b60f3f7b324dca |
import sys\nfrom concurrent.futures._base import Error, Future as _ConcurrentFuture\nfrom typing import Any, Awaitable, Callable, Generator, Iterable, List, Optional, Tuple, TypeVar, Union\n\nfrom .events import AbstractEventLoop\n\nif sys.version_info < (3, 8):\n from concurrent.futures import CancelledError as Can... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\futures.pyi | futures.pyi | Other | 2,581 | 0.85 | 0.569231 | 0 | react-lib | 153 | 2024-01-20T00:13:47.334243 | BSD-3-Clause | false | 8e11bb3ba2ad08fba4d701ce1e1e5231 |
import sys\nfrom types import TracebackType\nfrom typing import Any, Awaitable, Callable, Deque, Generator, Optional, Type, TypeVar, Union\n\nfrom .events import AbstractEventLoop\nfrom .futures import Future\n\n_T = TypeVar("_T")\n\nif sys.version_info >= (3, 9):\n class _ContextManagerMixin:\n def __init__(... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\locks.pyi | locks.pyi | Other | 2,806 | 0.95 | 0.661765 | 0.016949 | awesome-app | 242 | 2025-03-25T22:32:59.752479 | MIT | false | c492d830de2d69a40bd7b4eb2a76a42d |
import logging\n\nlogger: logging.Logger\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\log.pyi | log.pyi | Other | 39 | 0.65 | 0 | 0 | react-lib | 457 | 2024-06-21T11:01:18.004836 | Apache-2.0 | false | 62cf40fa774d05a9e4d7b228ba84f354 |
from socket import socket\nfrom typing import Any, Mapping, Optional\nfrom typing_extensions import Literal\n\nfrom . import base_events, constants, events, futures, streams, transports\n\nclass _ProactorBasePipeTransport(transports._FlowControlMixin, transports.BaseTransport):\n def __init__(\n self,\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\proactor_events.pyi | proactor_events.pyi | Other | 2,783 | 0.85 | 0.260274 | 0 | awesome-app | 856 | 2025-01-11T05:02:30.769985 | BSD-3-Clause | false | 5d8473e82e09fcfd1b17687e688c049e |
import sys\nfrom asyncio import transports\nfrom typing import Optional, Tuple\n\nclass BaseProtocol:\n def connection_made(self, transport: transports.BaseTransport) -> None: ...\n def connection_lost(self, exc: Optional[Exception]) -> None: ...\n def pause_writing(self) -> None: ...\n def resume_writing(s... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\protocols.pyi | protocols.pyi | Other | 1,072 | 0.85 | 0.703704 | 0 | awesome-app | 670 | 2025-02-18T05:01:42.511738 | Apache-2.0 | false | 280ad3a9ce7e98db53c4c4279b47cab7 |
import sys\nfrom asyncio.events import AbstractEventLoop\nfrom typing import Any, Generic, Optional, TypeVar\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\nclass QueueEmpty(Exception): ...\nclass QueueFull(Exception): ...\n\n_T = TypeVar("_T")\n\nclass Queue(Generic[_T]):\n def __init__(sel... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\queues.pyi | queues.pyi | Other | 1,166 | 0.85 | 0.694444 | 0 | python-kit | 46 | 2024-03-10T11:27:20.380475 | Apache-2.0 | false | f9ab449c2a9e8765ac5cd5d6305d296f |
import sys\n\nif sys.version_info >= (3, 7):\n from typing import Awaitable, Optional, TypeVar\n\n _T = TypeVar("_T")\n if sys.version_info >= (3, 8):\n def run(main: Awaitable[_T], *, debug: Optional[bool] = ...) -> _T: ...\n else:\n def run(main: Awaitable[_T], *, debug: bool = ...) -> _T: .... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\runners.pyi | runners.pyi | Other | 314 | 0.85 | 0.4 | 0 | node-utils | 174 | 2024-01-28T19:39:40.880595 | Apache-2.0 | false | d8575a2028649ca7cdcfe66d6cceeeb1 |
import selectors\nfrom typing import Optional\n\nfrom . import base_events\n\nclass BaseSelectorEventLoop(base_events.BaseEventLoop):\n def __init__(self, selector: Optional[selectors.BaseSelector] = ...) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\selector_events.pyi | selector_events.pyi | Other | 215 | 0.85 | 0.285714 | 0 | vue-tools | 778 | 2024-08-19T07:36:46.348638 | BSD-3-Clause | false | 400382e44d4c8f69ec19ea9f91f7fd87 |
import ssl\nimport sys\nfrom typing import Any, Callable, ClassVar, Deque, Dict, List, Optional, Tuple\nfrom typing_extensions import Literal\n\nfrom . import constants, events, futures, protocols, transports\n\ndef _create_transport_context(server_side: bool, server_hostname: Optional[str]) -> ssl.SSLContext: ...\n\n_... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\sslproto.pyi | sslproto.pyi | Other | 5,415 | 0.85 | 0.406015 | 0 | node-utils | 217 | 2024-06-22T19:16:18.879031 | GPL-3.0 | false | df017f72061f0628e4aa4f2b055b1dae |
import sys\nfrom typing import Any, Awaitable, Callable, Iterable, List, Optional, Tuple\n\nfrom . import events\n\nif sys.version_info >= (3, 8):\n async def staggered_race(\n coro_fns: Iterable[Callable[[], Awaitable[Any]]],\n delay: Optional[float],\n *,\n loop: Optional[events.Abstrac... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\staggered.pyi | staggered.pyi | Other | 396 | 0.85 | 0.166667 | 0.1 | react-lib | 445 | 2023-09-21T11:04:05.177688 | GPL-3.0 | false | 60a0202cf78b8bb7d13cd8db138c2f80 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.