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 typing import Any, AsyncIterator, Awaitable, Callable, Iterable, Optional, Tuple, Union\n\nfrom . import events, protocols, transports\n\n_ClientConnectedCallback = Callable[[StreamReader, StreamWriter], Optional[Awaitable[None]]]\n\nif sys.version_info < (3, 8):\n class IncompleteReadError(EOFError... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\streams.pyi | streams.pyi | Other | 3,941 | 0.85 | 0.432692 | 0.06383 | react-lib | 979 | 2024-09-08T15:03:34.792118 | BSD-3-Clause | false | 7f486ce3c78831992050002552be2f2c |
import sys\nfrom asyncio import events, protocols, streams, transports\nfrom typing import IO, Any, Optional, Tuple, Union\n\nif sys.version_info >= (3, 8):\n from os import PathLike\n\n _ExecArg = Union[str, bytes, PathLike[str], PathLike[bytes]]\nelse:\n _ExecArg = Union[str, bytes] # Union used instead of ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\subprocess.pyi | subprocess.pyi | Other | 2,265 | 0.95 | 0.283333 | 0.055556 | node-utils | 540 | 2023-08-09T11:33:52.039470 | GPL-3.0 | false | 940d160d17ed321c4ed36610d8fbdf6f |
import concurrent.futures\nimport sys\nfrom types import FrameType\nfrom typing import (\n Any,\n Awaitable,\n Generator,\n Generic,\n Iterable,\n Iterator,\n List,\n Optional,\n Set,\n TextIO,\n Tuple,\n TypeVar,\n Union,\n overload,\n)\nfrom typing_extensions import Literal\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\tasks.pyi | tasks.pyi | Other | 7,153 | 0.95 | 0.240196 | 0.082051 | react-lib | 218 | 2025-06-01T18:15:32.589751 | MIT | false | f9d695d58cf891947986d096637042ae |
import sys\nfrom typing import Any, Callable, TypeVar\n\n_T = TypeVar("_T")\n\nif sys.version_info >= (3, 9):\n async def to_thread(__func: Callable[..., _T], *args: Any, **kwargs: Any) -> _T: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\threads.pyi | threads.pyi | Other | 194 | 0.85 | 0.285714 | 0 | python-kit | 50 | 2024-04-06T14:22:44.445190 | GPL-3.0 | false | be006a307d8580082f0ba3f923977944 |
import sys\nfrom asyncio.events import AbstractEventLoop\nfrom asyncio.protocols import BaseProtocol\nfrom socket import _Address\nfrom typing import Any, List, Mapping, Optional, Tuple\n\nclass BaseTransport:\n def __init__(self, extra: Optional[Mapping[Any, Any]] = ...) -> None: ...\n def get_extra_info(self, n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\transports.pyi | transports.pyi | Other | 1,886 | 0.85 | 0.73913 | 0 | react-lib | 295 | 2024-09-03T23:45:47.754792 | GPL-3.0 | false | cc35453615cca39be8932c2c6da2c2ca |
import socket\nimport sys\nfrom types import TracebackType\nfrom typing import Any, BinaryIO, Iterable, List, NoReturn, Optional, Tuple, Type, Union, overload\n\nif sys.version_info >= (3, 8):\n # These are based in socket, maybe move them out into _typeshed.pyi or such\n _Address = Union[tuple, str]\n _RetAdd... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\trsock.pyi | trsock.pyi | Other | 4,582 | 0.95 | 0.627907 | 0.011765 | react-lib | 186 | 2023-07-12T21:01:31.029182 | Apache-2.0 | false | e7e19d5c03dcb8ed0016d98665db3714 |
import sys\nimport types\nfrom typing import Any, Callable, Optional, Type, TypeVar\n\nfrom .events import AbstractEventLoop, BaseDefaultEventLoopPolicy\nfrom .selector_events import BaseSelectorEventLoop\n\n_T1 = TypeVar("_T1", bound=AbstractChildWatcher)\n_T2 = TypeVar("_T2", bound=SafeChildWatcher)\n_T3 = TypeVar("_... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\unix_events.pyi | unix_events.pyi | Other | 2,144 | 0.85 | 0.473684 | 0 | vue-tools | 258 | 2024-01-19T02:57:10.706584 | GPL-3.0 | false | 23685496ee9966ce2e0e2048fcdea9f5 |
import socket\nimport sys\nfrom typing import IO, Any, Callable, ClassVar, List, NoReturn, Optional, Tuple, Type\n\nfrom . import events, futures, proactor_events, selector_events, streams, windows_utils\n\n__all__ = [\n "SelectorEventLoop",\n "ProactorEventLoop",\n "IocpProactor",\n "DefaultEventLoopPolicy... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\windows_events.pyi | windows_events.pyi | Other | 3,554 | 0.85 | 0.5 | 0 | python-kit | 422 | 2024-11-26T18:07:12.014368 | MIT | false | 4b816f2937eef48b41636cce04c01981 |
import sys\nfrom types import TracebackType\nfrom typing import Callable, Optional, Protocol, Tuple, Type\n\nclass _WarnFunction(Protocol):\n def __call__(self, message: str, category: Type[Warning] = ..., stacklevel: int = ..., source: PipeHandle = ...) -> None: ...\n\nBUFSIZE: int\nPIPE: int\nSTDOUT: int\n\ndef pi... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\windows_utils.pyi | windows_utils.pyi | Other | 983 | 0.85 | 0.538462 | 0 | node-utils | 358 | 2024-10-08T22:54:46.017124 | BSD-3-Clause | false | ccfedaea828dbfe370b1deb7e6dff64c |
import sys\nfrom typing import Type\n\nfrom .base_events import BaseEventLoop as BaseEventLoop\nfrom .coroutines import coroutine as coroutine, iscoroutine as iscoroutine, iscoroutinefunction as iscoroutinefunction\nfrom .events import (\n AbstractEventLoop as AbstractEventLoop,\n AbstractEventLoopPolicy as Abstr... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\asyncio\__init__.pyi | __init__.pyi | Other | 4,242 | 0.85 | 0.086207 | 0 | react-lib | 161 | 2025-04-08T20:31:38.494087 | GPL-3.0 | false | 24539d27c4561419144678fa5a3b3f72 |
from . import (\n AsyncGenerator as AsyncGenerator,\n AsyncIterable as AsyncIterable,\n AsyncIterator as AsyncIterator,\n Awaitable as Awaitable,\n ByteString as ByteString,\n Callable as Callable,\n Collection as Collection,\n Container as Container,\n Coroutine as Coroutine,\n Generator ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\collections\abc.pyi | abc.pyi | Other | 744 | 0.85 | 0 | 0 | python-kit | 64 | 2024-10-31T13:57:39.671891 | GPL-3.0 | false | 26b58fff704b22285ae69baf65527ac9 |
import sys\nimport typing\nfrom typing import (\n AbstractSet,\n Any,\n AsyncGenerator as AsyncGenerator,\n AsyncIterable as AsyncIterable,\n AsyncIterator as AsyncIterator,\n Awaitable as Awaitable,\n ByteString as ByteString,\n Callable as Callable,\n Collection as Collection,\n Containe... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\collections\__init__.pyi | __init__.pyi | Other | 14,502 | 0.95 | 0.608563 | 0.038585 | awesome-app | 80 | 2024-10-16T00:17:44.190937 | MIT | false | cadffdaf5a74aeb37f5a01391b5b3c05 |
import sys\nfrom typing import Any, Callable, Optional, Tuple\n\nfrom ._base import Executor\n\nEXTRA_QUEUED_CALLS: Any\n\nif sys.version_info >= (3, 7):\n from ._base import BrokenExecutor\n class BrokenProcessPool(BrokenExecutor): ...\n\nelse:\n class BrokenProcessPool(RuntimeError): ...\n\nif sys.version_in... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\concurrent\futures\process.pyi | process.pyi | Other | 804 | 0.85 | 0.285714 | 0 | node-utils | 898 | 2023-10-28T13:06:52.593218 | BSD-3-Clause | false | 21cf5ddd99862996948e74f74a9647aa |
import queue\nimport sys\nfrom typing import Any, Callable, Generic, Iterable, Mapping, Optional, Tuple, TypeVar\n\nfrom ._base import Executor, Future\n\nif sys.version_info >= (3, 7):\n from ._base import BrokenExecutor\n class BrokenThreadPool(BrokenExecutor): ...\n\nif sys.version_info >= (3, 9):\n from ty... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\concurrent\futures\thread.pyi | thread.pyi | Other | 1,421 | 0.85 | 0.333333 | 0 | vue-tools | 129 | 2024-03-10T03:28:14.335753 | MIT | false | f99554bc84871fc9884e6905f2b0c10f |
import sys\nimport threading\nfrom abc import abstractmethod\nfrom logging import Logger\nfrom typing import (\n Any,\n Callable,\n Container,\n Generic,\n Iterable,\n Iterator,\n List,\n Optional,\n Protocol,\n Sequence,\n Set,\n TypeVar,\n overload,\n)\n\nif sys.version_info >= ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\concurrent\futures\_base.pyi | _base.pyi | Other | 4,676 | 0.95 | 0.488722 | 0.034783 | python-kit | 189 | 2024-05-10T12:33:37.237775 | GPL-3.0 | false | 11b40403bf123ffd1bd406c7733919c3 |
import sys\n\nfrom ._base import (\n ALL_COMPLETED as ALL_COMPLETED,\n FIRST_COMPLETED as FIRST_COMPLETED,\n FIRST_EXCEPTION as FIRST_EXCEPTION,\n CancelledError as CancelledError,\n Executor as Executor,\n Future as Future,\n TimeoutError as TimeoutError,\n as_completed as as_completed,\n wa... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\concurrent\futures\__init__.pyi | __init__.pyi | Other | 629 | 0.85 | 0.1 | 0 | node-utils | 605 | 2024-11-03T09:47:51.242971 | Apache-2.0 | false | 46735ee33b4b35ad80eae6cc35aec413 |
from types import TracebackType\nfrom typing import Iterator, MutableMapping, Optional, Type, Union\n\n_KeyType = Union[str, bytes]\n_ValueType = Union[str, bytes]\n\nerror = OSError\n\nclass _Database(MutableMapping[_KeyType, bytes]):\n def __init__(self, filebasename: str, mode: str, flag: str = ...) -> None: ...\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\dbm\dumb.pyi | dumb.pyi | Other | 1,010 | 0.95 | 0.56 | 0 | python-kit | 663 | 2025-03-02T09:49:38.163171 | BSD-3-Clause | false | 20a70a2bcec0303de84004b3936b82da |
from types import TracebackType\nfrom typing import List, Optional, Type, TypeVar, Union, overload\n\n_T = TypeVar("_T")\n_KeyType = Union[str, bytes]\n_ValueType = Union[str, bytes]\n\nclass error(OSError): ...\n\n# Actual typename gdbm, not exposed by the implementation\nclass _gdbm:\n def firstkey(self) -> Option... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\dbm\gnu.pyi | gnu.pyi | Other | 1,363 | 0.95 | 0.514286 | 0.064516 | vue-tools | 610 | 2024-04-09T15:11:52.367580 | BSD-3-Clause | false | 5e3ea9b26368ca98ff1aac7534281020 |
from types import TracebackType\nfrom typing import List, Optional, Type, TypeVar, Union, overload\n\n_T = TypeVar("_T")\n_KeyType = Union[str, bytes]\n_ValueType = Union[str, bytes]\n\nclass error(OSError): ...\n\nlibrary: str = ...\n\n# Actual typename dbm, not exposed by the implementation\nclass _dbm:\n def clos... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\dbm\ndbm.pyi | ndbm.pyi | Other | 1,236 | 0.95 | 0.441176 | 0.068966 | awesome-app | 930 | 2024-02-16T01:46:22.510078 | Apache-2.0 | false | cf9ead9849a05f17af7ca4125a8aaa5c |
from types import TracebackType\nfrom typing import Iterator, MutableMapping, Optional, Type, Union\nfrom typing_extensions import Literal\n\n_KeyType = Union[str, bytes]\n_ValueType = Union[str, bytes]\n\nclass _Database(MutableMapping[_KeyType, bytes]):\n def close(self) -> None: ...\n def __getitem__(self, key... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\dbm\__init__.pyi | __init__.pyi | Other | 945 | 0.85 | 0.541667 | 0 | react-lib | 430 | 2024-07-07T06:35:21.328258 | BSD-3-Clause | false | 3cf7e28efddf00f100788488059f7f84 |
from typing import Optional\n\ndef make_archive(\n base_name: str,\n format: str,\n root_dir: Optional[str] = ...,\n base_dir: Optional[str] = ...,\n verbose: int = ...,\n dry_run: int = ...,\n) -> str: ...\ndef make_tarball(base_name: str, base_dir: str, compress: Optional[str] = ..., verbose: int = ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\archive_util.pyi | archive_util.pyi | Other | 447 | 0.85 | 0.25 | 0 | python-kit | 991 | 2024-11-28T19:28:03.415592 | GPL-3.0 | false | 5e64278ca21ab8b45daed5a7445deebe |
from distutils.ccompiler import CCompiler\n\nclass BCPPCompiler(CCompiler): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\bcppcompiler.pyi | bcppcompiler.pyi | Other | 78 | 0.65 | 0.333333 | 0 | react-lib | 962 | 2024-05-30T04:43:26.642952 | Apache-2.0 | false | 2a60cff066cbc75d6c4c28772c48eb73 |
from typing import Any, Callable, List, Optional, Tuple, Union\n\n_Macro = Union[Tuple[str], Tuple[str, Optional[str]]]\n\ndef gen_lib_options(\n compiler: CCompiler, library_dirs: List[str], runtime_library_dirs: List[str], libraries: List[str]\n) -> List[str]: ...\ndef gen_preprocess_options(macros: List[_Macro], ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\ccompiler.pyi | ccompiler.pyi | Other | 6,449 | 0.85 | 0.293333 | 0 | react-lib | 298 | 2023-08-13T23:11:17.574668 | Apache-2.0 | false | 9824fd2ab84bb4503078da4e9c354a6a |
from abc import abstractmethod\nfrom distutils.dist import Distribution\nfrom typing import Any, Callable, Iterable, List, Optional, Tuple, Union\n\nclass Command:\n sub_commands: List[Tuple[str, Optional[Callable[[Command], bool]]]]\n def __init__(self, dist: Distribution) -> None: ...\n @abstractmethod\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\cmd.pyi | cmd.pyi | Other | 2,803 | 0.95 | 0.38806 | 0 | vue-tools | 656 | 2025-05-24T07:05:25.228417 | Apache-2.0 | false | 0be80809ac537ded5d96c76b4c629bda |
from abc import abstractmethod\nfrom distutils.cmd import Command\nfrom typing import ClassVar, List, Optional, Tuple\n\nDEFAULT_PYPIRC: str\n\nclass PyPIRCCommand(Command):\n DEFAULT_REPOSITORY: ClassVar[str]\n DEFAULT_REALM: ClassVar[str]\n repository: None\n realm: None\n user_options: ClassVar[List[T... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\config.pyi | config.pyi | Other | 523 | 0.85 | 0.235294 | 0 | awesome-app | 224 | 2024-05-15T13:11:35.868501 | Apache-2.0 | false | 508ad042ac8ee5319ddedf363c001b20 |
from distutils.cmd import Command as Command\nfrom distutils.dist import Distribution as Distribution\nfrom distutils.extension import Extension as Extension\nfrom typing import Any, List, Mapping, Optional, Tuple, Type, Union\n\ndef setup(\n *,\n name: str = ...,\n version: str = ...,\n description: str = ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\core.pyi | core.pyi | Other | 1,688 | 0.85 | 0.041667 | 0.042553 | awesome-app | 10 | 2023-07-22T17:26:48.205067 | Apache-2.0 | false | 5ebf2a0fd94f96e724b4975128a75e8d |
from distutils.unixccompiler import UnixCCompiler\n\nclass CygwinCCompiler(UnixCCompiler): ...\nclass Mingw32CCompiler(CygwinCCompiler): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\cygwinccompiler.pyi | cygwinccompiler.pyi | Other | 138 | 0.85 | 0.5 | 0 | react-lib | 583 | 2025-02-16T01:56:40.365180 | GPL-3.0 | false | 91a1a907420cee7cc73f9bb2e3444568 |
DEBUG: bool\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\debug.pyi | debug.pyi | Other | 12 | 0.5 | 0 | 0 | react-lib | 518 | 2023-08-20T04:16:57.769978 | Apache-2.0 | false | bef743d2755e113e8611711f6e4a8957 |
from typing import List, Tuple\n\ndef newer(source: str, target: str) -> bool: ...\ndef newer_pairwise(sources: List[str], targets: List[str]) -> List[Tuple[str, str]]: ...\ndef newer_group(sources: List[str], target: str, missing: str = ...) -> bool: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\dep_util.pyi | dep_util.pyi | Other | 252 | 0.85 | 0.6 | 0 | react-lib | 118 | 2023-07-15T09:16:41.790355 | BSD-3-Clause | false | cec5dcf775edfa6ad62e6c89c85592d1 |
from typing import List\n\ndef mkpath(name: str, mode: int = ..., verbose: int = ..., dry_run: int = ...) -> List[str]: ...\ndef create_tree(base_dir: str, files: List[str], mode: int = ..., verbose: int = ..., dry_run: int = ...) -> None: ...\ndef copy_tree(\n src: str,\n dst: str,\n preserve_mode: int = ...,... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\dir_util.pyi | dir_util.pyi | Other | 555 | 0.85 | 0.266667 | 0 | python-kit | 255 | 2025-05-13T14:35:30.011218 | MIT | false | 263006a82147f248c9d80f64968b12d9 |
from _typeshed import AnyPath, SupportsWrite\nfrom distutils.cmd import Command\nfrom typing import IO, Any, Dict, Iterable, List, Mapping, Optional, Tuple, Type, Union\n\nclass DistributionMetadata:\n def __init__(self, path: Optional[Union[int, AnyPath]] = ...) -> None: ...\n name: Optional[str]\n version: O... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\dist.pyi | dist.pyi | Other | 2,557 | 0.85 | 0.586207 | 0 | react-lib | 247 | 2023-10-24T07:02:04.090556 | BSD-3-Clause | false | 699611fa39d3fe7cb71aebdaf053961f |
class DistutilsError(Exception): ...\nclass DistutilsModuleError(DistutilsError): ...\nclass DistutilsClassError(DistutilsError): ...\nclass DistutilsGetoptError(DistutilsError): ...\nclass DistutilsArgError(DistutilsError): ...\nclass DistutilsFileError(DistutilsError): ...\nclass DistutilsOptionError(DistutilsError):... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\errors.pyi | errors.pyi | Other | 852 | 0.85 | 1 | 0 | react-lib | 620 | 2024-12-30T13:58:33.749881 | MIT | false | 6154dd026e95cba1e698bb40b50bc850 |
from typing import List, Optional, Tuple\n\nclass Extension:\n def __init__(\n self,\n name: str,\n sources: List[str],\n include_dirs: List[str] = ...,\n define_macros: List[Tuple[str, Optional[str]]] = ...,\n undef_macros: List[str] = ...,\n library_dirs: List[str] ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\extension.pyi | extension.pyi | Other | 736 | 0.95 | 0.090909 | 0 | awesome-app | 3 | 2024-03-14T18:02:08.072219 | MIT | false | 15a726a8cea572383740da1072663467 |
from typing import Any, List, Mapping, Optional, Tuple, Union, overload\n\n_Option = Tuple[str, Optional[str], str]\n_GR = Tuple[List[str], OptionDummy]\n\ndef fancy_getopt(\n options: List[_Option], negative_opt: Mapping[_Option, _Option], object: Any, args: Optional[List[str]]\n) -> Union[List[str], _GR]: ...\ndef... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\fancy_getopt.pyi | fancy_getopt.pyi | Other | 859 | 0.95 | 0.428571 | 0.058824 | react-lib | 379 | 2024-12-29T12:33:48.062443 | MIT | false | 0feac67fe905821bf6efbb51f4e65130 |
class FileList: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\filelist.pyi | filelist.pyi | Other | 20 | 0.65 | 1 | 0 | react-lib | 467 | 2024-10-17T12:18:37.394479 | MIT | false | 7e231e1d0ec92241b7b535063264e52f |
from typing import Optional, Sequence, Tuple\n\ndef copy_file(\n src: str,\n dst: str,\n preserve_mode: bool = ...,\n preserve_times: bool = ...,\n update: bool = ...,\n link: Optional[str] = ...,\n verbose: bool = ...,\n dry_run: bool = ...,\n) -> Tuple[str, str]: ...\ndef move_file(src: str, d... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\file_util.pyi | file_util.pyi | Other | 439 | 0.85 | 0.214286 | 0 | node-utils | 75 | 2024-09-30T16:47:09.575692 | Apache-2.0 | false | e8e94788d3442d535c6bfb54e6c067cb |
from typing import Any\n\nDEBUG: int\nINFO: int\nWARN: int\nERROR: int\nFATAL: int\n\nclass Log:\n def __init__(self, threshold: int = ...) -> None: ...\n def log(self, level: int, msg: str, *args: Any) -> None: ...\n def debug(self, msg: str, *args: Any) -> None: ...\n def info(self, msg: str, *args: Any) ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\log.pyi | log.pyi | Other | 845 | 0.85 | 0.64 | 0 | vue-tools | 957 | 2025-03-20T05:14:56.500146 | MIT | false | ccf380c4a913e0fdbf0671280e2b927c |
from distutils.ccompiler import CCompiler\n\nclass MSVCCompiler(CCompiler): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\msvccompiler.pyi | msvccompiler.pyi | Other | 78 | 0.65 | 0.333333 | 0 | node-utils | 598 | 2024-07-03T21:03:23.155714 | MIT | false | 580235ee88a5ebdfc9e67864d2a7c5bc |
from typing import List, Optional\n\ndef spawn(cmd: List[str], search_path: bool = ..., verbose: bool = ..., dry_run: bool = ...) -> None: ...\ndef find_executable(executable: str, path: Optional[str] = ...) -> Optional[str]: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\spawn.pyi | spawn.pyi | Other | 227 | 0.85 | 0.5 | 0 | vue-tools | 337 | 2024-04-23T13:41:56.678626 | MIT | false | cbb2893490d76fa4430905f7a966dbd1 |
from distutils.ccompiler import CCompiler\nfrom typing import Mapping, Optional, Union\n\nPREFIX: str\nEXEC_PREFIX: str\n\ndef get_config_var(name: str) -> Union[int, str, None]: ...\ndef get_config_vars(*args: str) -> Mapping[str, Union[int, str]]: ...\ndef get_config_h_filename() -> str: ...\ndef get_makefile_filenam... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\sysconfig.pyi | sysconfig.pyi | Other | 620 | 0.85 | 0.571429 | 0 | react-lib | 677 | 2023-12-17T14:17:57.267057 | BSD-3-Clause | false | 6432d17b3d24267613cce0b0c703ccd4 |
from typing import IO, List, Optional, Tuple, Union\n\nclass TextFile:\n def __init__(\n self,\n filename: Optional[str] = ...,\n file: Optional[IO[str]] = ...,\n *,\n strip_comments: bool = ...,\n lstrip_ws: bool = ...,\n rstrip_ws: bool = ...,\n skip_blanks: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\text_file.pyi | text_file.pyi | Other | 716 | 0.85 | 0.380952 | 0.05 | vue-tools | 117 | 2024-08-20T16:37:24.738454 | MIT | false | 603cdd1839e391a9f4d7675a810ed38d |
from distutils.ccompiler import CCompiler\n\nclass UnixCCompiler(CCompiler): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\unixccompiler.pyi | unixccompiler.pyi | Other | 79 | 0.65 | 0.333333 | 0 | awesome-app | 528 | 2024-07-14T02:09:29.953230 | MIT | false | 8f017fb674af90b3ef426ca13571ca07 |
from typing import Any, Callable, List, Mapping, Optional, Tuple\n\ndef get_platform() -> str: ...\ndef convert_path(pathname: str) -> str: ...\ndef change_root(new_root: str, pathname: str) -> str: ...\ndef check_environ() -> None: ...\ndef subst_vars(s: str, local_vars: Mapping[str, str]) -> None: ...\ndef split_quot... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\util.pyi | util.pyi | Other | 829 | 0.85 | 0.434783 | 0 | vue-tools | 752 | 2023-09-11T11:53:17.425481 | MIT | false | dd8ad279f04ba11e9fe2f5252713084a |
from abc import abstractmethod\nfrom typing import Optional, Pattern, Tuple, TypeVar, Union\n\n_T = TypeVar("_T", bound=Version)\n\nclass Version:\n def __repr__(self) -> str: ...\n def __eq__(self, other: object) -> bool: ...\n def __lt__(self: _T, other: Union[_T, str]) -> bool: ...\n def __le__(self: _T,... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\version.pyi | version.pyi | Other | 1,429 | 0.85 | 0.552632 | 0 | react-lib | 657 | 2025-03-01T15:47:45.145815 | MIT | false | d3cc55b568d8ccd8026fb7565f0fe957 |
from distutils.cmd import Command\n\nclass bdist_msi(Command):\n def initialize_options(self) -> None: ...\n def finalize_options(self) -> None: ...\n def run(self) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\command\bdist_msi.pyi | bdist_msi.pyi | Other | 182 | 0.85 | 0.666667 | 0 | python-kit | 752 | 2024-03-06T20:47:10.119668 | Apache-2.0 | false | 9e7983accd4965cad41f9465b79b8948 |
from distutils.cmd import Command\n\nclass build_py(Command):\n def initialize_options(self) -> None: ...\n def finalize_options(self) -> None: ...\n def run(self) -> None: ...\n\nclass build_py_2to3(build_py): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\command\build_py.pyi | build_py.pyi | Other | 217 | 0.85 | 0.625 | 0 | node-utils | 792 | 2023-09-26T04:47:53.678247 | GPL-3.0 | false | f23d3b2e6a29e67e8e19e60166afe8f4 |
from distutils import log as log\nfrom distutils.ccompiler import CCompiler\nfrom distutils.core import Command as Command\nfrom distutils.errors import DistutilsExecError as DistutilsExecError\nfrom distutils.sysconfig import customize_compiler as customize_compiler\nfrom typing import Dict, List, Optional, Pattern, S... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\command\config.pyi | config.pyi | Other | 3,059 | 0.95 | 0.149425 | 0.011905 | awesome-app | 589 | 2023-07-12T05:58:09.199580 | GPL-3.0 | false | 756e02f310cfcee2bf530fc01e0f5ec1 |
from distutils.cmd import Command\nfrom typing import Optional, Tuple\n\nSCHEME_KEYS: Tuple[str, ...]\n\nclass install(Command):\n user: bool\n prefix: Optional[str]\n home: Optional[str]\n root: Optional[str]\n install_lib: Optional[str]\n def initialize_options(self) -> None: ...\n def finalize_o... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\command\install.pyi | install.pyi | Other | 365 | 0.85 | 0.285714 | 0 | awesome-app | 133 | 2025-04-04T02:26:22.271851 | BSD-3-Clause | false | ef228980f6a53b2bf29ee996ce7911bb |
from distutils.cmd import Command\nfrom typing import ClassVar, List, Optional, Tuple\n\nclass install_egg_info(Command):\n description: ClassVar[str]\n user_options: ClassVar[List[Tuple[str, Optional[str], str]]]\n def initialize_options(self) -> None: ...\n def finalize_options(self) -> None: ...\n def... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\command\install_egg_info.pyi | install_egg_info.pyi | Other | 380 | 0.85 | 0.5 | 0 | node-utils | 459 | 2025-06-02T04:49:42.926119 | Apache-2.0 | false | b8e3a53331ced6a6f136d790963b6723 |
from distutils.config import PyPIRCCommand\nfrom typing import ClassVar, List\n\nclass upload(PyPIRCCommand):\n description: ClassVar[str]\n boolean_options: ClassVar[List[str]]\n def run(self) -> None: ...\n def upload_file(self, command, pyversion, filename) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\distutils\command\upload.pyi | upload.pyi | Other | 279 | 0.85 | 0.375 | 0 | react-lib | 642 | 2024-12-09T08:55:09.664945 | Apache-2.0 | false | 91495369b114d9d8a9a2d9bfeccbfdfc |
from typing import Any, Iterator, List, Optional\n\nQP: int # undocumented\nBASE64: int # undocumented\nSHORTEST: int # undocumented\n\nclass Charset:\n input_charset: str\n header_encoding: int\n body_encoding: int\n output_charset: Optional[str]\n input_codec: Optional[str]\n output_codec: Option... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\charset.pyi | charset.pyi | Other | 1,062 | 0.95 | 0.464286 | 0 | python-kit | 215 | 2024-07-13T22:34:13.115777 | MIT | false | f99226cff03db3aca80dc6d4029d64ec |
from email.message import Message\nfrom typing import Any, Callable\n\nclass ContentManager:\n def __init__(self) -> None: ...\n def get_content(self, msg: Message, *args: Any, **kw: Any) -> Any: ...\n def set_content(self, msg: Message, obj: Any, *args: Any, **kw: Any) -> Any: ...\n def add_get_handler(sel... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\contentmanager.pyi | contentmanager.pyi | Other | 489 | 0.85 | 0.545455 | 0 | vue-tools | 878 | 2023-08-14T03:34:38.241214 | Apache-2.0 | false | a9817b302513b83c815da49fa130454d |
from email.message import Message\n\ndef encode_base64(msg: Message) -> None: ...\ndef encode_quopri(msg: Message) -> None: ...\ndef encode_7or8bit(msg: Message) -> None: ...\ndef encode_noop(msg: Message) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\encoders.pyi | encoders.pyi | Other | 214 | 0.85 | 0.666667 | 0 | python-kit | 922 | 2024-06-20T03:38:53.992768 | GPL-3.0 | false | aed2811ec8e8077976bd70e8b421b07b |
class MessageError(Exception): ...\nclass MessageParseError(MessageError): ...\nclass HeaderParseError(MessageParseError): ...\nclass BoundaryError(MessageParseError): ...\nclass MultipartConversionError(MessageError, TypeError): ...\nclass MessageDefect(ValueError): ...\nclass NoBoundaryInMultipartDefect(MessageDefect... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\errors.pyi | errors.pyi | Other | 833 | 0.85 | 0.882353 | 0 | node-utils | 891 | 2023-11-20T09:20:07.623594 | MIT | false | fb45842b7b6078feff2ea64b52eb2a83 |
from email.message import Message\nfrom email.policy import Policy\nfrom typing import Callable, Generic, TypeVar, overload\n\n_M = TypeVar("_M", bound=Message)\n\nclass FeedParser(Generic[_M]):\n @overload\n def __init__(self: FeedParser[Message], _factory: None = ..., *, policy: Policy = ...) -> None: ...\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\feedparser.pyi | feedparser.pyi | Other | 823 | 0.85 | 0.47619 | 0 | vue-tools | 825 | 2023-08-17T19:45:02.364344 | BSD-3-Clause | false | 541bbeef7ff05c9a9f5fff9f8d5f1afa |
from email.message import Message\nfrom email.policy import Policy\nfrom typing import BinaryIO, Optional, TextIO\n\nclass Generator:\n def clone(self, fp: TextIO) -> Generator: ...\n def write(self, s: str) -> None: ...\n def __init__(self, outfp: TextIO, mangle_from_: bool = ..., maxheaderlen: int = ..., *, ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\generator.pyi | generator.pyi | Other | 967 | 0.85 | 0.666667 | 0 | python-kit | 367 | 2023-10-05T21:00:06.931431 | BSD-3-Clause | false | 0f157087e715eb99129dc9b5d2d73a97 |
from email.charset import Charset\nfrom typing import Any, List, Optional, Tuple, Union\n\nclass Header:\n def __init__(\n self,\n s: Union[bytes, str, None] = ...,\n charset: Union[Charset, str, None] = ...,\n maxlinelen: Optional[int] = ...,\n header_name: Optional[str] = ...,\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\header.pyi | header.pyi | Other | 1,025 | 0.85 | 0.346154 | 0 | python-kit | 345 | 2023-07-24T23:17:40.895882 | GPL-3.0 | false | da9d394ad7897e657cfe9eb123f6ed13 |
from datetime import datetime as _datetime\nfrom email.errors import MessageDefect\nfrom email.policy import Policy\nfrom typing import Any, Dict, Mapping, Optional, Tuple, Union\n\nclass BaseHeader(str):\n @property\n def name(self) -> str: ...\n @property\n def defects(self) -> Tuple[MessageDefect, ...]: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\headerregistry.pyi | headerregistry.pyi | Other | 2,828 | 0.85 | 0.433333 | 0 | vue-tools | 695 | 2023-10-29T17:21:13.010741 | MIT | false | 910f70aa64c76160ebd0ecfdfdc1d6c4 |
from email.message import Message\nfrom typing import Iterator, Optional\n\ndef body_line_iterator(msg: Message, decode: bool = ...) -> Iterator[str]: ...\ndef typed_subpart_iterator(msg: Message, maintype: str = ..., subtype: Optional[str] = ...) -> Iterator[str]: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\iterators.pyi | iterators.pyi | Other | 266 | 0.85 | 0.4 | 0 | react-lib | 343 | 2024-12-27T16:09:25.294918 | Apache-2.0 | false | e1d53fbcad822c276e6aebd138b80ec1 |
from email.charset import Charset\nfrom email.contentmanager import ContentManager\nfrom email.errors import MessageDefect\nfrom email.policy import Policy\nfrom typing import Any, Generator, Iterator, List, Optional, Sequence, Tuple, TypeVar, Union\n\n_T = TypeVar("_T")\n\n_PayloadType = Union[List[Message], str, byte... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\message.pyi | message.pyi | Other | 4,681 | 0.95 | 0.678161 | 0 | awesome-app | 842 | 2025-03-01T00:15:21.733003 | BSD-3-Clause | false | 0862a22e77db23bf406e65c89dd7ea1c |
import email.feedparser\nfrom email.message import Message\nfrom email.policy import Policy\nfrom typing import BinaryIO, Callable, TextIO\n\nFeedParser = email.feedparser.FeedParser\nBytesFeedParser = email.feedparser.BytesFeedParser\n\nclass Parser:\n def __init__(self, _class: Callable[[], Message] = ..., *, poli... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\parser.pyi | parser.pyi | Other | 1,328 | 0.85 | 0.592593 | 0 | awesome-app | 707 | 2025-06-08T22:13:32.496684 | Apache-2.0 | false | f49677dd136bb54b21e187baf01be952 |
from abc import abstractmethod\nfrom email.contentmanager import ContentManager\nfrom email.errors import MessageDefect\nfrom email.header import Header\nfrom email.message import Message\nfrom typing import Any, Callable, List, Optional, Tuple, Union\n\nclass Policy:\n max_line_length: Optional[int]\n linesep: s... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\policy.pyi | policy.pyi | Other | 2,159 | 0.95 | 0.425926 | 0 | node-utils | 244 | 2024-02-24T05:15:36.931755 | Apache-2.0 | false | ba0f0a6d0847c5352a3614766b1a7653 |
import datetime\nimport sys\nfrom email.charset import Charset\nfrom typing import List, Optional, Tuple, Union, overload\n\n_ParamType = Union[str, Tuple[Optional[str], Optional[str], str]]\n_PDTZ = Tuple[int, int, int, int, int, int, int, int, int, Optional[int]]\n\ndef quote(str: str) -> str: ...\ndef unquote(str: s... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\utils.pyi | utils.pyi | Other | 1,832 | 0.85 | 0.55 | 0 | node-utils | 133 | 2023-10-08T08:26:36.840178 | BSD-3-Clause | false | 8b1fa17c74b247b378eb46ec19c26a8a |
from email.message import Message\nfrom email.policy import Policy\nfrom typing import IO, Callable\n\ndef message_from_string(s: str, _class: Callable[[], Message] = ..., *, policy: Policy = ...) -> Message: ...\ndef message_from_bytes(s: bytes, _class: Callable[[], Message] = ..., *, policy: Policy = ...) -> Message:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\__init__.pyi | __init__.pyi | Other | 757 | 0.95 | 0.173913 | 0.666667 | react-lib | 1,000 | 2024-06-07T20:14:22.064002 | Apache-2.0 | false | d91f4b44ec835d5641776205ea62a82c |
from email.mime.nonmultipart import MIMENonMultipart\nfrom email.policy import Policy\nfrom typing import Callable, Optional, Tuple, Union\n\n_ParamsType = Union[str, None, Tuple[str, Optional[str], str]]\n\nclass MIMEApplication(MIMENonMultipart):\n def __init__(\n self,\n _data: Union[str, bytes],\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\mime\application.pyi | application.pyi | Other | 499 | 0.85 | 0.125 | 0.142857 | awesome-app | 855 | 2024-07-27T01:58:28.844219 | GPL-3.0 | false | 0fbaa7b7b3b19f93c9a447b89337f0aa |
from email.mime.nonmultipart import MIMENonMultipart\nfrom email.policy import Policy\nfrom typing import Callable, Optional, Tuple, Union\n\n_ParamsType = Union[str, None, Tuple[str, Optional[str], str]]\n\nclass MIMEAudio(MIMENonMultipart):\n def __init__(\n self,\n _audiodata: Union[str, bytes],\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\mime\audio.pyi | audio.pyi | Other | 502 | 0.85 | 0.125 | 0.142857 | awesome-app | 285 | 2024-03-17T06:47:21.720493 | Apache-2.0 | false | a69baeda3cdfada88933ec67b36acb70 |
import email.message\nfrom email.policy import Policy\nfrom typing import Optional, Tuple, Union\n\n_ParamsType = Union[str, None, Tuple[str, Optional[str], str]]\n\nclass MIMEBase(email.message.Message):\n def __init__(self, _maintype: str, _subtype: str, *, policy: Optional[Policy] = ..., **_params: _ParamsType) -... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\mime\base.pyi | base.pyi | Other | 325 | 0.85 | 0.25 | 0 | node-utils | 550 | 2024-09-08T12:40:44.445925 | Apache-2.0 | false | 550aa4771f9a655d8ec78802e533f606 |
from email.mime.nonmultipart import MIMENonMultipart\nfrom email.policy import Policy\nfrom typing import Callable, Optional, Tuple, Union\n\n_ParamsType = Union[str, None, Tuple[str, Optional[str], str]]\n\nclass MIMEImage(MIMENonMultipart):\n def __init__(\n self,\n _imagedata: Union[str, bytes],\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\mime\image.pyi | image.pyi | Other | 502 | 0.85 | 0.125 | 0.142857 | python-kit | 473 | 2025-01-09T11:54:29.136585 | Apache-2.0 | false | b16a226a6f0dcbec4529c573da692d43 |
from email.message import Message\nfrom email.mime.nonmultipart import MIMENonMultipart\nfrom email.policy import Policy\nfrom typing import Optional\n\nclass MIMEMessage(MIMENonMultipart):\n def __init__(self, _msg: Message, _subtype: str = ..., *, policy: Optional[Policy] = ...) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\mime\message.pyi | message.pyi | Other | 292 | 0.85 | 0.285714 | 0 | react-lib | 707 | 2025-01-07T09:40:39.060060 | MIT | false | addaf2a67e5d46b464fb03d6ef509dcd |
from email.message import Message\nfrom email.mime.base import MIMEBase\nfrom email.policy import Policy\nfrom typing import Optional, Sequence, Tuple, Union\n\n_ParamsType = Union[str, None, Tuple[str, Optional[str], str]]\n\nclass MIMEMultipart(MIMEBase):\n def __init__(\n self,\n _subtype: str = ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\mime\multipart.pyi | multipart.pyi | Other | 507 | 0.85 | 0.117647 | 0.133333 | awesome-app | 390 | 2024-02-06T16:39:12.940627 | BSD-3-Clause | false | aedf22c782d423909882f477180c2930 |
from email.mime.base import MIMEBase\n\nclass MIMENonMultipart(MIMEBase): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\mime\nonmultipart.pyi | nonmultipart.pyi | Other | 76 | 0.65 | 0.333333 | 0 | awesome-app | 864 | 2023-09-08T22:10:49.292646 | MIT | false | b1ce77a6939dfef898483063c5c9ce35 |
from email.mime.nonmultipart import MIMENonMultipart\nfrom email.policy import Policy\nfrom typing import Optional\n\nclass MIMEText(MIMENonMultipart):\n def __init__(\n self, _text: str, _subtype: str = ..., _charset: Optional[str] = ..., *, policy: Optional[Policy] = ...\n ) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\email\mime\text.pyi | text.pyi | Other | 297 | 0.85 | 0.25 | 0 | vue-tools | 748 | 2023-07-24T06:42:28.458408 | MIT | false | 35add33a18b36fbeb2230acb8c9a5f0a |
import codecs\nfrom typing import Tuple\n\nclass IncrementalEncoder(codecs.IncrementalEncoder):\n def encode(self, input: str, final: bool = ...) -> bytes: ...\n\nclass IncrementalDecoder(codecs.BufferedIncrementalDecoder):\n def _buffer_decode(self, input: bytes, errors: str, final: bool) -> Tuple[str, int]: ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\encodings\utf_8.pyi | utf_8.pyi | Other | 561 | 0.85 | 0.6 | 0 | awesome-app | 611 | 2024-05-03T07:35:37.736944 | MIT | false | a52bbb71f67fe9d1fd89ce0f8874b201 |
import codecs\nfrom typing import Any\n\ndef search_function(encoding: str) -> codecs.CodecInfo: ...\n\n# Explicitly mark this package as incomplete.\ndef __getattr__(name: str) -> Any: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\encodings\__init__.pyi | __init__.pyi | Other | 184 | 0.95 | 0.285714 | 0.2 | python-kit | 479 | 2024-01-10T19:18:09.124362 | BSD-3-Clause | false | 685d06f21a8a8fafb1d610a6f88b1970 |
from typing import Dict\n\nname2codepoint: Dict[str, int]\nhtml5: Dict[str, str]\ncodepoint2name: Dict[int, str]\nentitydefs: Dict[str, str]\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\html\entities.pyi | entities.pyi | Other | 136 | 0.85 | 0 | 0 | react-lib | 174 | 2024-03-14T19:02:33.728757 | Apache-2.0 | false | cee1db4481daa549918ed502ce549a8c |
from _markupbase import ParserBase\nfrom typing import List, Optional, Tuple\n\nclass HTMLParser(ParserBase):\n def __init__(self, *, convert_charrefs: bool = ...) -> None: ...\n def feed(self, feed: str) -> None: ...\n def close(self) -> None: ...\n def reset(self) -> None: ...\n def getpos(self) -> Tup... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\html\parser.pyi | parser.pyi | Other | 984 | 0.85 | 0.85 | 0 | react-lib | 274 | 2025-06-22T08:03:47.473231 | GPL-3.0 | false | 1a6f15fc232b780e0faffe6efb5d639a |
from typing import AnyStr\n\ndef escape(s: AnyStr, quote: bool = ...) -> AnyStr: ...\ndef unescape(s: AnyStr) -> AnyStr: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\html\__init__.pyi | __init__.pyi | Other | 122 | 0.85 | 0.5 | 0 | react-lib | 510 | 2023-11-29T06:25:14.787241 | GPL-3.0 | false | cc7148f1833d5d45715bb7f9c073228e |
import email.message\nimport io\nimport ssl\nimport sys\nimport types\nfrom socket import socket\nfrom typing import (\n IO,\n Any,\n BinaryIO,\n Callable,\n Dict,\n Iterable,\n Iterator,\n List,\n Mapping,\n Optional,\n Protocol,\n Tuple,\n Type,\n TypeVar,\n Union,\n ov... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\http\client.pyi | client.pyi | Other | 6,034 | 0.95 | 0.260664 | 0.020619 | node-utils | 416 | 2025-04-03T22:44:06.796109 | GPL-3.0 | false | bd344c4a0b70f1e96ac937dea6d04ac3 |
import sys\nfrom http.client import HTTPResponse\nfrom os import PathLike\nfrom typing import Dict, Iterable, Iterator, Optional, Sequence, Tuple, TypeVar, Union, overload\nfrom urllib.request import Request\n\n_T = TypeVar("_T")\n\nclass LoadError(OSError): ...\n\nclass CookieJar(Iterable[Cookie]):\n def __init__(s... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\http\cookiejar.pyi | cookiejar.pyi | Other | 4,991 | 0.95 | 0.333333 | 0 | python-kit | 473 | 2024-10-24T08:35:38.395425 | BSD-3-Clause | false | 5499521e3cf0649e4eb27eb13af4518f |
import sys\nfrom typing import Any, Dict, Generic, List, Mapping, Optional, TypeVar, Union\n\n_DataType = Union[str, Mapping[str, Union[str, Morsel[Any]]]]\n_T = TypeVar("_T")\n\nclass CookieError(Exception): ...\n\nclass Morsel(Dict[str, Any], Generic[_T]):\n value: str\n coded_value: _T\n key: str\n if sy... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\http\cookies.pyi | cookies.pyi | Other | 1,364 | 0.85 | 0.580645 | 0 | react-lib | 504 | 2024-03-20T20:44:07.122586 | Apache-2.0 | false | 86e506d82349b2312b257627e5db6d64 |
import email.message\nimport socketserver\nimport sys\nfrom typing import Any, Callable, ClassVar, Dict, List, Mapping, Optional, Sequence, Tuple, Union\n\nif sys.version_info >= (3, 7):\n from builtins import _PathLike\n\nclass HTTPServer(socketserver.TCPServer):\n server_name: str\n server_port: int\n def... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\http\server.pyi | server.pyi | Other | 3,036 | 0.95 | 0.444444 | 0 | vue-tools | 583 | 2023-07-29T07:00:29.670020 | GPL-3.0 | false | beb7635fdc4be8ea782feb28ed61141a |
import sys\nfrom enum import IntEnum\nfrom typing_extensions import Literal\n\nclass HTTPStatus(IntEnum):\n @property\n def phrase(self) -> str: ...\n @property\n def description(self) -> str: ...\n CONTINUE: int\n SWITCHING_PROTOCOLS: int\n PROCESSING: int\n OK: int\n CREATED: int\n ACCEP... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\http\__init__.pyi | __init__.pyi | Other | 1,940 | 0.85 | 0.081081 | 0 | node-utils | 606 | 2023-12-14T02:59:24.497256 | GPL-3.0 | false | d3246da2ded3565416f4c536a831004b |
import os\nimport sys\nimport types\nfrom abc import ABCMeta, abstractmethod\nfrom typing import IO, Any, Iterator, Mapping, Optional, Sequence, Tuple, Union\nfrom typing_extensions import Literal\n\n# Loader is exported from this module, but for circular import reasons\n# exists in its own stub file (with ModuleSpec a... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\importlib\abc.pyi | abc.pyi | Other | 3,960 | 0.95 | 0.525773 | 0.047059 | react-lib | 364 | 2024-11-16T19:43:59.412891 | MIT | false | e3442baccd14663e110efbf909875ef2 |
import importlib.abc\nimport types\nfrom typing import Callable, List, Optional, Sequence, Tuple, Union\n\n# ModuleSpec is exported from this module, but for circular import\n# reasons exists in its own stub file (with Loader and ModuleType).\nfrom _importlib_modulespec import Loader, ModuleSpec as ModuleSpec # Export... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\importlib\machinery.pyi | machinery.pyi | Other | 4,006 | 0.95 | 0.377551 | 0.090909 | vue-tools | 58 | 2024-11-09T05:55:41.874420 | BSD-3-Clause | false | f3b998466d69c95ec0581426a84a0040 |
import abc\nimport os\nimport pathlib\nimport sys\nfrom email.message import Message\nfrom importlib.abc import MetaPathFinder\nfrom pathlib import Path\nfrom typing import Any, Dict, Iterable, List, NamedTuple, Optional, Tuple, Union, overload\n\nif sys.version_info >= (3, 8):\n class PackageNotFoundError(ModuleNot... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\importlib\metadata.pyi | metadata.pyi | Other | 3,786 | 0.95 | 0.505747 | 0.023256 | node-utils | 154 | 2025-01-13T06:57:32.777280 | BSD-3-Clause | false | 755669ccb36cf1d6d2e12de54b2e9565 |
import sys\n\n# This is a >=3.7 module, so we conditionally include its source.\nif sys.version_info >= (3, 7):\n import os\n from pathlib import Path\n from types import ModuleType\n from typing import BinaryIO, ContextManager, Iterator, TextIO, Union\n\n Package = Union[str, ModuleType]\n Resource =... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\importlib\resources.pyi | resources.pyi | Other | 1,026 | 0.95 | 0.454545 | 0.052632 | node-utils | 911 | 2024-03-02T03:38:32.025435 | Apache-2.0 | false | 2e57327716d6add7aeeae4afc900a0b3 |
import importlib.abc\nimport importlib.machinery\nimport os\nimport types\nfrom typing import Any, Callable, List, Optional, Union\n\ndef module_for_loader(fxn: Callable[..., types.ModuleType]) -> Callable[..., types.ModuleType]: ...\ndef set_loader(fxn: Callable[..., types.ModuleType]) -> Callable[..., types.ModuleTyp... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\importlib\util.pyi | util.pyi | Other | 1,782 | 0.85 | 0.4 | 0.055556 | awesome-app | 913 | 2024-03-29T00:36:24.528110 | BSD-3-Clause | false | 1b26f46a06b39f9547849aa9aec7a9de |
import types\nfrom importlib.abc import Loader\nfrom typing import Any, Mapping, Optional, Sequence\n\ndef __import__(\n name: str,\n globals: Optional[Mapping[str, Any]] = ...,\n locals: Optional[Mapping[str, Any]] = ...,\n fromlist: Sequence[str] = ...,\n level: int = ...,\n) -> types.ModuleType: ...\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\importlib\__init__.pyi | __init__.pyi | Other | 571 | 0.85 | 0.333333 | 0 | react-lib | 26 | 2023-10-20T01:05:23.802582 | Apache-2.0 | false | 13f5966ba60f1c4546fb79308c263c7a |
from typing import Any, Callable, Dict, List, Optional, Tuple\n\nclass JSONDecodeError(ValueError):\n msg: str\n doc: str\n pos: int\n lineno: int\n colno: int\n def __init__(self, msg: str, doc: str, pos: int) -> None: ...\n\nclass JSONDecoder:\n object_hook: Callable[[Dict[str, Any]], Any]\n p... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\json\decoder.pyi | decoder.pyi | Other | 1,090 | 0.95 | 0.206897 | 0.037037 | react-lib | 246 | 2024-11-10T17:50:56.666905 | MIT | false | 3c6d3a5e4ad19122e7386e916217b946 |
from typing import Any, Callable, Iterator, Optional, Tuple\n\nclass JSONEncoder:\n item_separator: str\n key_separator: str\n\n skipkeys: bool\n ensure_ascii: bool\n check_circular: bool\n allow_nan: bool\n sort_keys: bool\n indent: int\n def __init__(\n self,\n *,\n ski... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\json\encoder.pyi | encoder.pyi | Other | 779 | 0.85 | 0.185185 | 0.04 | node-utils | 983 | 2025-03-28T16:43:39.063025 | MIT | false | d4c5972c6fd5e8bb1e0ef379b4d4b103 |
def main() -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\json\tool.pyi | tool.pyi | Other | 24 | 0.65 | 1 | 0 | node-utils | 3 | 2024-03-24T10:01:20.653908 | GPL-3.0 | false | 163a29351e4447c95e0d3fb1be5ca0dc |
from _typeshed import SupportsRead\nfrom typing import IO, Any, Callable, Dict, List, Optional, Tuple, Type, Union\n\nfrom .decoder import JSONDecodeError as JSONDecodeError, JSONDecoder as JSONDecoder\nfrom .encoder import JSONEncoder as JSONEncoder\n\ndef dumps(\n obj: Any,\n *,\n skipkeys: bool = ...,\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\json\__init__.pyi | __init__.pyi | Other | 1,919 | 0.85 | 0.070175 | 0.145455 | python-kit | 939 | 2023-10-03T18:00:57.954633 | GPL-3.0 | false | 691292900a22f3c5ec4e797d969a01b2 |
import socket\nimport sys\nimport types\nfrom typing import Any, Iterable, List, Optional, Tuple, Type, Union\n\nif sys.version_info >= (3, 8):\n from typing import SupportsIndex\n\n# https://docs.python.org/3/library/multiprocessing.html#address-formats\n_Address = Union[str, Tuple[str, int]]\n\nclass _ConnectionBa... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\connection.pyi | connection.pyi | Other | 2,602 | 0.95 | 0.548387 | 0.018182 | vue-tools | 682 | 2024-05-04T05:54:07.017517 | BSD-3-Clause | false | 94591b4f44a6e21c9f96e6ab468fad0d |
import multiprocessing\nimport sys\nfrom logging import Logger\nfrom multiprocessing import queues, sharedctypes, synchronize\nfrom multiprocessing.process import BaseProcess\nfrom typing import Any, Callable, Iterable, List, Optional, Sequence, Type, Union, overload\nfrom typing_extensions import Literal\n\n_LockLike ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\context.pyi | context.pyi | Other | 6,698 | 0.95 | 0.496689 | 0.098592 | react-lib | 473 | 2025-01-25T18:26:41.252547 | BSD-3-Clause | false | a421827842ffadf5accfb6e52a9630fb |
# NOTE: These are incomplete!\n\nimport queue\nimport sys\nimport threading\nfrom typing import (\n Any,\n AnyStr,\n Callable,\n ContextManager,\n Dict,\n Generic,\n Iterable,\n List,\n Mapping,\n Optional,\n Sequence,\n Tuple,\n TypeVar,\n Union,\n)\n\nfrom .context import Bas... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\managers.pyi | managers.pyi | Other | 4,584 | 0.95 | 0.386861 | 0.016529 | python-kit | 82 | 2024-07-14T20:18:36.839127 | Apache-2.0 | false | 045f3130c50946ebd88571cbe25df1a8 |
import sys\nfrom typing import Any, Callable, ContextManager, Generic, Iterable, Iterator, List, Mapping, Optional, TypeVar\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n_PT = TypeVar("_PT", bound=Pool)\n_S = TypeVar("_S")\n_T = TypeVar("_T")\n\nclass ApplyResult(Generic[_T]):\n def get(se... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\pool.pyi | pool.pyi | Other | 3,224 | 0.95 | 0.357143 | 0.027027 | vue-tools | 840 | 2024-08-21T02:24:44.868614 | BSD-3-Clause | false | ec77139ae83a49bfa19da908f1828a21 |
import sys\nfrom typing import Any, Callable, List, Mapping, Optional, Tuple\n\nclass BaseProcess:\n name: str\n daemon: bool\n authkey: bytes\n def __init__(\n self,\n group: None = ...,\n target: Optional[Callable[..., Any]] = ...,\n name: Optional[str] = ...,\n args: Tu... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\process.pyi | process.pyi | Other | 1,143 | 0.85 | 0.461538 | 0.027778 | react-lib | 954 | 2025-03-16T02:43:30.550974 | Apache-2.0 | false | 1df85c01c805c115d09a3478403008df |
import queue\nimport sys\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 Queue(queue.Queue[_T]):\n # FIXME: `ctx` is a circular dependency and it's not actually optional.\n # It's marked as such to be able to ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\queues.pyi | queues.pyi | Other | 1,288 | 0.95 | 0.657143 | 0.066667 | awesome-app | 335 | 2023-12-26T23:16:01.374672 | BSD-3-Clause | false | 85bbfe699d070dcb1bbd139d7423d5d9 |
from ctypes import _CData\nfrom multiprocessing.context import BaseContext\nfrom multiprocessing.synchronize import _LockLike\nfrom typing import Any, List, Optional, Sequence, Type, Union, overload\n\nclass _Array:\n value: Any = ...\n def __init__(\n self,\n typecode_or_type: Union[str, Type[_CDat... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\sharedctypes.pyi | sharedctypes.pyi | Other | 1,526 | 0.85 | 0.418605 | 0.05 | awesome-app | 894 | 2025-06-05T07:51:51.739305 | Apache-2.0 | false | 31402da02af0d92162b39393ca0cc0b7 |
import sys\nfrom typing import Any, Generic, Iterable, Optional, Tuple, TypeVar\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n_S = TypeVar("_S")\n_SLT = TypeVar("_SLT", int, float, bool, str, bytes, None)\n\nif sys.version_info >= (3, 8):\n class SharedMemory:\n def __init__(self, n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\shared_memory.pyi | shared_memory.pyi | Other | 1,302 | 0.85 | 0.606061 | 0 | vue-tools | 507 | 2024-01-03T20:08:44.913416 | BSD-3-Clause | false | c9e497c7bc38ebab5f8dd3766798350e |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.