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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
from typing import Dict\n\ns: str\nd: Dict[str, str]\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\this.pyi | this.pyi | Other | 50 | 0.65 | 0 | 0 | node-utils | 296 | 2023-12-22T20:35:12.719281 | BSD-3-Clause | false | 8195640d194902044fa05f35500989ce |
import sys\nfrom types import FrameType, TracebackType\nfrom typing import Any, Callable, Iterable, List, Mapping, Optional, Text, Type, TypeVar, Union\n\n# TODO recursive type\n_TF = Callable[[FrameType, str, Any], Optional[Callable[..., Any]]]\n\n_PF = Callable[[FrameType, str, Any], None]\n_T = TypeVar("_T")\n\n__al... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\threading.pyi | threading.pyi | Other | 6,309 | 0.95 | 0.545455 | 0.0125 | vue-tools | 21 | 2024-06-22T03:04:15.291862 | GPL-3.0 | false | 996f3aac3305fc1b8c667c93accba08a |
import sys\nfrom typing import Any, NamedTuple, Optional, Tuple, Union\n\nif sys.version_info >= (3, 3):\n from types import SimpleNamespace\n\n_TimeTuple = Tuple[int, int, int, int, int, int, int, int, int]\n\nif sys.version_info < (3, 3):\n accept2dyear: bool\naltzone: int\ndaylight: int\ntimezone: int\ntzname:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\time.pyi | time.pyi | Other | 3,900 | 0.95 | 0.439655 | 0 | react-lib | 662 | 2024-02-19T13:36:13.693944 | BSD-3-Clause | false | ba3d40a7c1da9f19a39989c45e9d2a95 |
import sys\nfrom typing import IO, Any, Callable, Dict, List, Optional, Sequence, Text, Tuple, Union\n\n_str = Union[str, Text]\n_Timer = Callable[[], float]\n_stmt = Union[_str, Callable[[], Any]]\n\ndefault_timer: _Timer\n\nclass Timer:\n if sys.version_info >= (3, 5):\n def __init__(\n self, stm... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\timeit.pyi | timeit.pyi | Other | 1,623 | 0.85 | 0.357143 | 0 | node-utils | 285 | 2024-09-16T04:18:20.959854 | GPL-3.0 | false | 7ae903018ef404bba1060b7e3e5273b7 |
import sys\nfrom typing import Dict\n\nENDMARKER: int\nNAME: int\nNUMBER: int\nSTRING: int\nNEWLINE: int\nINDENT: int\nDEDENT: int\nLPAR: int\nRPAR: int\nLSQB: int\nRSQB: int\nCOLON: int\nCOMMA: int\nSEMI: int\nPLUS: int\nMINUS: int\nSTAR: int\nSLASH: int\nVBAR: int\nAMPER: int\nLESS: int\nGREATER: int\nEQUAL: int\nDOT... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\token.pyi | token.pyi | Other | 1,468 | 0.95 | 0.117647 | 0.012048 | react-lib | 671 | 2024-11-27T13:02:00.637142 | GPL-3.0 | false | 4fdfcfc5fba8f22b3c1c40b73296b9dd |
import types\nfrom _typeshed import StrPath\nfrom typing import Any, Callable, Mapping, Optional, Sequence, Tuple, TypeVar, Union\n\n_T = TypeVar("_T")\n_localtrace = Callable[[types.FrameType, str, Any], Callable[..., Any]]\n\nclass CoverageResults:\n def update(self, other: CoverageResults) -> None: ...\n def w... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\trace.pyi | trace.pyi | Other | 2,037 | 0.85 | 0.395349 | 0 | python-kit | 240 | 2023-12-19T23:35:16.132253 | Apache-2.0 | false | 3e6d68650fb53047d4822771d5222d47 |
import sys\nfrom _typeshed import SupportsWrite\nfrom types import FrameType, TracebackType\nfrom typing import IO, Any, Dict, Generator, Iterable, Iterator, List, Mapping, Optional, Tuple, Type\n\n_PT = Tuple[str, int, str, Optional[str]]\n\ndef print_tb(tb: Optional[TracebackType], limit: Optional[int] = ..., file: O... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\traceback.pyi | traceback.pyi | Other | 5,545 | 0.95 | 0.342857 | 0.04 | react-lib | 786 | 2024-03-16T07:26:33.141417 | GPL-3.0 | false | c2731749a7818a0bce6a9bfa465c0041 |
from typing import IO, Union\n\n_FD = Union[int, IO[str]]\n\n# XXX: Undocumented integer constants\nIFLAG: int\nOFLAG: int\nCFLAG: int\nLFLAG: int\nISPEED: int\nOSPEED: int\nCC: int\n\ndef setraw(fd: _FD, when: int = ...) -> None: ...\ndef setcbreak(fd: _FD, when: int = ...) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\tty.pyi | tty.pyi | Other | 275 | 0.95 | 0.133333 | 0.083333 | react-lib | 556 | 2025-03-31T16:49:27.761087 | GPL-3.0 | false | 94e0ad2d5a5fda5d58e18968d2e03d4e |
import sys\nfrom typing import Any, Callable, Dict, List, Optional, Sequence, Text, Tuple, TypeVar, Union, overload\n\nif sys.version_info >= (3,):\n from tkinter import Canvas, PhotoImage\nelse:\n # TODO: Replace these aliases once we have Python 2 stubs for the Tkinter module.\n Canvas = Any\n PhotoImage ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\turtle.pyi | turtle.pyi | Other | 19,476 | 0.95 | 0.473118 | 0.079767 | vue-tools | 802 | 2024-01-29T09:07:23.420538 | GPL-3.0 | false | ccece365856a0148b0f48f8a96001b76 |
import sys\nfrom typing import Any, Text, TypeVar, Union\n\nucd_3_2_0: UCD\nucnhash_CAPI: Any\nunidata_version: str\n\n_default = TypeVar("_default")\n\ndef bidirectional(__chr: Text) -> Text: ...\ndef category(__chr: Text) -> Text: ...\ndef combining(__chr: Text) -> int: ...\ndef decimal(__chr: Text, __default: _defau... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\unicodedata.pyi | unicodedata.pyi | Other | 1,902 | 0.95 | 0.642857 | 0.055556 | awesome-app | 93 | 2024-06-30T06:45:54.288658 | GPL-3.0 | false | 3652d7979d67a7c78107b980bfc9db16 |
import sys\nfrom typing import BinaryIO, Optional, Text, Union\n\n_File = Union[Text, BinaryIO]\n\nclass Error(Exception): ...\n\nif sys.version_info >= (3, 7):\n def encode(\n in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ..., *, backtick: bool = ...\n ) -> None: ...\n\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\uu.pyi | uu.pyi | Other | 549 | 0.85 | 0.3125 | 0 | node-utils | 660 | 2024-04-24T12:41:44.289641 | MIT | false | 8dc621542d4c136048bfbd46b32f8858 |
import sys\nfrom typing import Any, Optional, Text, Tuple\n\n# Because UUID has properties called int and bytes we need to rename these temporarily.\n_Int = int\n_Bytes = bytes\n_FieldsType = Tuple[int, int, int, int, int, int]\n\nif sys.version_info >= (3, 7):\n from enum import Enum\n class SafeUUID(Enum):\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\uuid.pyi | uuid.pyi | Other | 3,448 | 0.95 | 0.459459 | 0.018868 | awesome-app | 395 | 2023-10-14T01:25:10.856816 | BSD-3-Clause | false | 80cc60e452d4125df48dbfebd3ba6c76 |
import sys\nfrom types import ModuleType, TracebackType\nfrom typing import Any, List, Optional, TextIO, Type, Union, overload\nfrom typing_extensions import Literal\n\nfrom _warnings import warn as warn, warn_explicit as warn_explicit\n\ndef showwarning(\n message: Union[Warning, str],\n category: Type[Warning],... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\warnings.pyi | warnings.pyi | Other | 2,583 | 0.85 | 0.273973 | 0 | node-utils | 70 | 2025-04-25T15:53:16.485364 | GPL-3.0 | false | ca70b89190e48e4fc5ce7f693fd8817b |
import sys\nfrom typing import IO, Any, BinaryIO, NamedTuple, NoReturn, Optional, Text, Tuple, Union\n\n_File = Union[Text, IO[bytes]]\n\nclass Error(Exception): ...\n\nWAVE_FORMAT_PCM: int\n\nif sys.version_info < (3, 0):\n _wave_params = Tuple[int, int, int, int, str, str]\nelse:\n class _wave_params(NamedTuple... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\wave.pyi | wave.pyi | Other | 2,651 | 0.95 | 0.726027 | 0.030769 | react-lib | 59 | 2024-04-25T18:40:51.204603 | Apache-2.0 | false | d1f493cb3cda578e0e6273aaa9cfc6dd |
import sys\nimport types\nfrom _weakrefset import WeakSet as WeakSet\nfrom typing import (\n Any,\n Callable,\n Dict,\n Generic,\n Iterable,\n Iterator,\n List,\n Mapping,\n MutableMapping,\n Optional,\n Tuple,\n Type,\n TypeVar,\n Union,\n overload,\n)\n\nfrom _weakref impo... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\weakref.pyi | weakref.pyi | Other | 4,433 | 0.95 | 0.537815 | 0.018182 | awesome-app | 610 | 2023-12-06T23:15:36.149164 | GPL-3.0 | false | 8b5eaac7ad66fae94f4d411457726213 |
import sys\nfrom typing import Callable, List, Optional, Sequence, Text, Union\n\nclass Error(Exception): ...\n\nif sys.version_info >= (3, 7):\n def register(\n name: Text, klass: Optional[Callable[[], BaseBrowser]], instance: Optional[BaseBrowser] = ..., *, preferred: bool = ...\n ) -> None: ...\n\nelse:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\webbrowser.pyi | webbrowser.pyi | Other | 3,295 | 0.85 | 0.371429 | 0 | vue-tools | 122 | 2024-11-23T07:25:05.299786 | GPL-3.0 | false | 7dc14627a0faf55b7c45a06ab3e1f8cc |
import sys\nfrom typing import Optional, Union, overload\nfrom typing_extensions import Literal\n\nif sys.platform == "win32":\n SND_FILENAME: int\n SND_ALIAS: int\n SND_LOOP: int\n SND_MEMORY: int\n SND_PURGE: int\n SND_ASYNC: int\n SND_NODEFAULT: int\n SND_NOSTOP: int\n SND_NOWAIT: int\n\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\winsound.pyi | winsound.pyi | Other | 811 | 0.95 | 0.222222 | 0.04 | vue-tools | 593 | 2024-02-17T10:05:31.828355 | GPL-3.0 | false | 327cecbaad91d6615bb767e39da65bf1 |
from typing import Callable, List, Sequence, TypeVar\n\n_T = TypeVar("_T")\n\nclass Error(Exception):\n msg: str\n def __init__(self, msg: str) -> None: ...\n\nclass ConversionError(Error): ...\n\nclass Packer:\n def __init__(self) -> None: ...\n def reset(self) -> None: ...\n def get_buffer(self) -> byt... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xdrlib.pyi | xdrlib.pyi | Other | 2,315 | 0.85 | 0.854545 | 0 | react-lib | 217 | 2024-03-31T20:08:16.379420 | BSD-3-Clause | false | 779649a323347ee3f4b54e73090d5950 |
import io\nimport sys\nfrom _typeshed import StrPath\nfrom types import TracebackType\nfrom typing import (\n IO,\n Any,\n Callable,\n Dict,\n Iterable,\n Iterator,\n List,\n Optional,\n Pattern,\n Protocol,\n Sequence,\n Text,\n Tuple,\n Type,\n Union,\n)\n\n_SZI = Union[Te... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\zipfile.pyi | zipfile.pyi | Other | 7,249 | 0.95 | 0.322727 | 0.004878 | awesome-app | 330 | 2024-09-23T07:21:43.055284 | Apache-2.0 | false | 73a8ba83c8f0ecd0cdb7279681aef62c |
import os\nimport sys\nfrom types import CodeType, ModuleType\nfrom typing import Any, List, Optional, Tuple, Union\n\nif sys.version_info >= (3, 7):\n from importlib.abc import ResourceReader\n\nclass ZipImportError(ImportError): ...\n\nclass zipimporter(object):\n archive: str\n prefix: str\n if sys.versi... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\zipimport.pyi | zipimport.pyi | Other | 1,244 | 0.95 | 0.566667 | 0 | awesome-app | 521 | 2023-09-13T00:58:01.577390 | Apache-2.0 | false | dcf06be85958c55e745ae80d400f8003 |
import sys\nfrom array import array\nfrom typing import Any, Union\n\nDEFLATED: int\nDEF_MEM_LEVEL: int\nMAX_WBITS: int\nZLIB_VERSION: str\nZ_BEST_COMPRESSION: int\nZ_BEST_SPEED: int\nZ_DEFAULT_COMPRESSION: int\nZ_DEFAULT_STRATEGY: int\nZ_FILTERED: int\nZ_FINISH: int\nZ_FULL_FLUSH: int\nZ_HUFFMAN_ONLY: int\nZ_NO_FLUSH:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\zlib.pyi | zlib.pyi | Other | 1,692 | 0.85 | 0.355932 | 0 | vue-tools | 36 | 2025-04-03T02:07:26.642516 | MIT | false | d43f96d524cd861ddb7d05515cb965d1 |
from typing import MutableSequence, Optional, Sequence, TypeVar\n\n_T = TypeVar("_T")\n\ndef bisect_left(a: Sequence[_T], x: _T, lo: int = ..., hi: Optional[int] = ...) -> int: ...\ndef bisect_right(a: Sequence[_T], x: _T, lo: int = ..., hi: Optional[int] = ...) -> int: ...\ndef insort_left(a: MutableSequence[_T], x: _... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_bisect.pyi | _bisect.pyi | Other | 471 | 0.85 | 0.5 | 0 | vue-tools | 637 | 2024-07-09T22:31:00.345066 | Apache-2.0 | false | dbeda438c3ad1dcf9a3168fdd21cac13 |
import codecs\nimport sys\nfrom typing import Any, Callable, Dict, Optional, Text, Tuple, Union\n\n# For convenience:\n_Handler = Callable[[Exception], Tuple[Text, int]]\n_String = Union[bytes, str]\n_Errors = Union[str, Text, None]\nif sys.version_info < (3, 0):\n _Decodable = Union[bytes, Text]\n _Encodable = U... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_codecs.pyi | _codecs.pyi | Other | 5,308 | 0.95 | 0.670732 | 0.027397 | awesome-app | 794 | 2023-10-19T04:21:27.718286 | Apache-2.0 | false | c503782a55030671b1acf2264cecc9a4 |
import sys\nfrom typing import Any, Iterable, Iterator, List, Optional, Protocol, Sequence, Text, Type, Union\n\nQUOTE_ALL: int\nQUOTE_MINIMAL: int\nQUOTE_NONE: int\nQUOTE_NONNUMERIC: int\n\nclass Error(Exception): ...\n\nclass Dialect:\n delimiter: str\n quotechar: Optional[str]\n escapechar: Optional[str]\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_csv.pyi | _csv.pyi | Other | 1,574 | 0.85 | 0.431373 | 0 | react-lib | 704 | 2023-10-14T09:43:25.277679 | MIT | false | a7d0710bfa992316a3c556bbfa66b21a |
import sys\nfrom typing import IO, Any, BinaryIO, NamedTuple, Optional, Tuple, Union, overload\n\n_chtype = Union[str, bytes, int]\n\nALL_MOUSE_EVENTS: int\nA_ALTCHARSET: int\nA_ATTRIBUTES: int\nA_BLINK: int\nA_BOLD: int\nA_CHARTEXT: int\nA_COLOR: int\nA_DIM: int\nA_HORIZONTAL: int\nA_INVIS: int\nif sys.version_info >=... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_curses.pyi | _curses.pyi | Other | 13,596 | 0.85 | 0.37551 | 0 | node-utils | 488 | 2024-03-10T08:06:28.492560 | GPL-3.0 | false | bd36021ed0bc2851eb201d7ea1d954bd |
import sys\nfrom types import FrameType, TracebackType\nfrom typing import Any, Callable, Iterable, List, Mapping, Optional, Text, Type, TypeVar, Union\n\n# TODO recursive type\n_TF = Callable[[FrameType, str, Any], Optional[Callable[..., Any]]]\n\n_PF = Callable[[FrameType, str, Any], None]\n_T = TypeVar("_T")\n\n__al... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_dummy_threading.pyi | _dummy_threading.pyi | Other | 6,309 | 0.95 | 0.545455 | 0.0125 | awesome-app | 549 | 2024-09-21T13:13:08.105709 | BSD-3-Clause | false | 996f3aac3305fc1b8c667c93accba08a |
import sys\nfrom typing import Any, Callable, Iterable, List, Optional, TypeVar\n\n_T = TypeVar("_T")\n\ndef heapify(__heap: List[_T]) -> None: ...\ndef heappop(__heap: List[_T]) -> _T: ...\ndef heappush(__heap: List[_T], __item: _T) -> None: ...\ndef heappushpop(__heap: List[_T], __item: _T) -> _T: ...\ndef heapreplac... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_heapq.pyi | _heapq.pyi | Other | 612 | 0.85 | 0.571429 | 0 | awesome-app | 75 | 2024-02-15T06:48:51.225991 | BSD-3-Clause | false | 7af1550f3296deb8f49518c27c8d56dd |
import sys\nfrom typing import List, Optional, Union\n\nif sys.platform == "win32":\n\n # Actual typename View, not exposed by the implementation\n class _View:\n def Execute(self, params: Optional[_Record] = ...) -> None: ...\n def GetColumnInfo(self, kind: int) -> _Record: ...\n def Fetch(s... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_msi.pyi | _msi.pyi | Other | 2,168 | 0.95 | 0.591837 | 0.170213 | awesome-app | 49 | 2023-08-27T00:24:49.803447 | Apache-2.0 | false | 9ce8afaa0c73f0ddc244246c526b1877 |
import sys\nfrom typing import Tuple\n\n# Actually Tuple[(int,) * 625]\n_State = Tuple[int, ...]\n\nclass Random(object):\n def __init__(self, seed: object = ...) -> None: ...\n def seed(self, __n: object = ...) -> None: ...\n def getstate(self) -> _State: ...\n def setstate(self, __state: _State) -> None: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_random.pyi | _random.pyi | Other | 478 | 0.95 | 0.6 | 0.076923 | node-utils | 476 | 2024-11-09T09:52:44.348552 | MIT | false | 5db0e9ec2b1587b6cd650604d052e955 |
import sys\nfrom typing import Any, Dict, List, Optional, Tuple, Type, Union, overload\n\nif sys.version_info >= (3, 0):\n _defaultaction: str\n _onceregistry: Dict[Any, Any]\nelse:\n default_action: str\n once_registry: Dict[Any, Any]\n\nfilters: List[Tuple[Any, ...]]\n\nif sys.version_info >= (3, 6):\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_warnings.pyi | _warnings.pyi | Other | 2,233 | 0.85 | 0.149254 | 0 | node-utils | 948 | 2023-09-03T12:24:40.824483 | BSD-3-Clause | false | bb893939ce764a627415e0438c24f8f4 |
import sys\nfrom typing import Any, Callable, Generic, Optional, TypeVar, overload\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n_C = TypeVar("_C", bound=Callable[..., Any])\n_T = TypeVar("_T")\n\nclass CallableProxyType(object): # "weakcallableproxy"\n def __getattr__(self, attr: str) ->... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_weakref.pyi | _weakref.pyi | Other | 1,200 | 0.95 | 0.5 | 0.038462 | node-utils | 575 | 2023-12-06T11:15:06.971862 | Apache-2.0 | false | 3e7a42350bb0494c1af7aebcc6a66195 |
import sys\nfrom typing import Any, Generic, Iterable, Iterator, MutableSet, Optional, TypeVar, Union\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n_S = TypeVar("_S")\n_T = TypeVar("_T")\n_SelfT = TypeVar("_SelfT", bound=WeakSet[Any])\n\nclass WeakSet(MutableSet[_T], Generic[_T]):\n def __... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_weakrefset.pyi | _weakrefset.pyi | Other | 2,417 | 0.85 | 0.808511 | 0 | react-lib | 973 | 2025-01-02T21:37:34.894459 | MIT | false | c6175ce94d1321c70956e5da2c42cf00 |
import sys\nfrom typing import List\n\nclass _Feature:\n def getOptionalRelease(self) -> sys._version_info: ...\n def getMandatoryRelease(self) -> sys._version_info: ...\n compiler_flag: int\n\nabsolute_import: _Feature\ndivision: _Feature\ngenerators: _Feature\nnested_scopes: _Feature\nprint_function: _Featur... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\__future__.pyi | __future__.pyi | Other | 587 | 0.95 | 0.24 | 0 | react-lib | 372 | 2025-01-10T22:22:50.872926 | BSD-3-Clause | false | 0fddc9fc7c7f5df9b840739dfb0ac8e7 |
import sys\nfrom typing import Optional\n\ndef find_library(name: str) -> Optional[str]: ...\n\nif sys.platform == "win32":\n def find_msvcrt() -> Optional[str]: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\ctypes\util.pyi | util.pyi | Other | 163 | 0.85 | 0.428571 | 0 | node-utils | 570 | 2023-07-27T11:33:23.288693 | BSD-3-Clause | false | b6b37bc95be094e0c815a7f61c85294c |
from ctypes import (\n Array,\n Structure,\n _SimpleCData,\n c_byte,\n c_char,\n c_char_p,\n c_double,\n c_float,\n c_int,\n c_long,\n c_longlong,\n c_short,\n c_uint,\n c_ulong,\n c_ulonglong,\n c_ushort,\n c_void_p,\n c_wchar,\n c_wchar_p,\n pointer,\n)\n\nB... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\ctypes\wintypes.pyi | wintypes.pyi | Other | 4,642 | 0.95 | 0.055556 | 0.02381 | awesome-app | 679 | 2023-12-16T04:16:52.235310 | MIT | false | eda08263d7b0dd2db5bec02a4d8b5ab4 |
import sys\nfrom array import array\nfrom typing import (\n Any,\n Callable,\n ClassVar,\n Generic,\n Iterable,\n Iterator,\n List,\n Mapping,\n Optional,\n Sequence,\n Text,\n Tuple,\n Type,\n TypeVar,\n Union as _UnionT,\n overload,\n)\n\nif sys.version_info >= (3, 9):\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\ctypes\__init__.pyi | __init__.pyi | Other | 11,893 | 0.95 | 0.475728 | 0.116732 | awesome-app | 816 | 2025-02-09T18:16:05.033268 | MIT | false | 89200b1337121628851ea918661deeec |
from typing import List, TypeVar, Union\n\n_Ch = TypeVar("_Ch", str, int)\n\nNUL: int\nSOH: int\nSTX: int\nETX: int\nEOT: int\nENQ: int\nACK: int\nBEL: int\nBS: int\nTAB: int\nHT: int\nLF: int\nNL: int\nVT: int\nFF: int\nCR: int\nSO: int\nSI: int\nDLE: int\nDC1: int\nDC2: int\nDC3: int\nDC4: int\nNAK: int\nSYN: int\nET... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\curses\ascii.pyi | ascii.pyi | Other | 1,212 | 0.85 | 0.306452 | 0 | awesome-app | 438 | 2025-02-14T12:49:08.294626 | GPL-3.0 | false | c01945bebeb5a300b6f89f140b66620a |
from _curses import _CursesWindow\n\nclass _Curses_Panel: # type is <class '_curses_panel.curses panel'> (note the space in the class name)\n def above(self) -> _Curses_Panel: ...\n def below(self) -> _Curses_Panel: ...\n def bottom(self) -> None: ...\n def hidden(self) -> bool: ...\n def hide(self) -> ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\curses\panel.pyi | panel.pyi | Other | 801 | 0.95 | 0.95 | 0 | vue-tools | 98 | 2024-01-05T00:29:18.765939 | BSD-3-Clause | false | b3fd4db368a1608d4443d9604cb7948d |
from _curses import _CursesWindow\nfrom typing import Callable, Optional, Union\n\ndef rectangle(win: _CursesWindow, uly: int, ulx: int, lry: int, lrx: int) -> None: ...\n\nclass Textbox:\n stripspaces: bool\n def __init__(self, win: _CursesWindow, insert_mode: bool = ...) -> None: ...\n def edit(self, validat... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\curses\textpad.pyi | textpad.pyi | Other | 457 | 0.85 | 0.545455 | 0 | vue-tools | 995 | 2025-01-19T06:26:00.530585 | GPL-3.0 | false | 6bafb7c7e3d50a5fc1c89de5ec14ffe2 |
from _curses import * # noqa: F403\nfrom _curses import _CursesWindow as _CursesWindow\nfrom typing import Any, Callable, TypeVar\n\n_T = TypeVar("_T")\n\n# available after calling `curses.initscr()`\nLINES: int\nCOLS: int\n\n# available after calling `curses.start_color()`\nCOLORS: int\nCOLOR_PAIRS: int\n\ndef wrappe... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\curses\__init__.pyi | __init__.pyi | Other | 370 | 0.95 | 0.066667 | 0.181818 | node-utils | 991 | 2025-03-02T02:29:49.600682 | Apache-2.0 | false | 3d3e26755cea0d08e9b10dea57a0a264 |
import sys\nfrom typing import Optional\n\ndef version() -> str: ...\n\nif sys.version_info >= (3, 0):\n def bootstrap(\n *,\n root: Optional[str] = ...,\n upgrade: bool = ...,\n user: bool = ...,\n altinstall: bool = ...,\n default_pip: bool = ...,\n verbosity: int =... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\ensurepip\__init__.pyi | __init__.pyi | Other | 562 | 0.85 | 0.16 | 0.045455 | vue-tools | 71 | 2024-01-01T18:04:21.827874 | BSD-3-Clause | false | 58b211ff8e9b9dbdf7e22b2b212b4f5b |
from lib2to3.pgen2.grammar import Grammar\n\nclass Symbols:\n def __init__(self, grammar: Grammar) -> None: ...\n\nclass python_symbols(Symbols):\n and_expr: int\n and_test: int\n annassign: int\n arglist: int\n argument: int\n arith_expr: int\n assert_stmt: int\n async_funcdef: int\n asyn... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\lib2to3\pygram.pyi | pygram.pyi | Other | 2,208 | 0.85 | 0.035398 | 0 | awesome-app | 787 | 2023-08-23T05:02:52.795199 | BSD-3-Clause | false | eef6c2aa14cf1985e85f1a6670c12448 |
import sys\nfrom lib2to3.pgen2.grammar import Grammar\nfrom typing import Any, Callable, Dict, Iterator, List, Optional, Text, Tuple, TypeVar, Union\n\n_P = TypeVar("_P")\n_NL = Union[Node, Leaf]\n_Context = Tuple[Text, int, int]\n_Results = Dict[Text, _NL]\n_RawNode = Tuple[int, Text, _Context, Optional[List[_NL]]]\n_... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\lib2to3\pytree.pyi | pytree.pyi | Other | 3,322 | 0.95 | 0.42268 | 0 | react-lib | 434 | 2025-01-08T04:07:33.788158 | BSD-3-Clause | false | 76e3bc86eed8bed28c72445b02526704 |
from _typeshed import StrPath\nfrom lib2to3.pgen2.grammar import Grammar\nfrom lib2to3.pytree import _NL, _Convert\nfrom logging import Logger\nfrom typing import IO, Any, Iterable, Optional, Text\n\nclass Driver:\n grammar: Grammar\n logger: Logger\n convert: _Convert\n def __init__(self, grammar: Grammar,... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\lib2to3\pgen2\driver.pyi | driver.pyi | Other | 956 | 0.85 | 0.4 | 0 | python-kit | 522 | 2025-05-06T00:52:59.778193 | MIT | false | 6b405a56963cdadb7a47d2d2445ccfbf |
from _typeshed import StrPath\nfrom typing import Dict, List, Optional, Text, Tuple, TypeVar\n\n_P = TypeVar("_P")\n_Label = Tuple[int, Optional[Text]]\n_DFA = List[List[Tuple[int, int]]]\n_DFAS = Tuple[_DFA, Dict[int, int]]\n\nclass Grammar:\n symbol2number: Dict[Text, int]\n number2symbol: Dict[int, Text]\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\lib2to3\pgen2\grammar.pyi | grammar.pyi | Other | 733 | 0.85 | 0.230769 | 0 | python-kit | 437 | 2024-08-31T15:18:53.384648 | BSD-3-Clause | false | e628b3d1d9b001962e2579d1a05913fc |
from typing import Dict, Match, Text\n\nsimple_escapes: Dict[Text, Text]\n\ndef escape(m: Match[str]) -> Text: ...\ndef evalString(s: Text) -> Text: ...\ndef test() -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\lib2to3\pgen2\literals.pyi | literals.pyi | Other | 172 | 0.85 | 0.428571 | 0 | vue-tools | 411 | 2023-10-18T07:15:56.181405 | BSD-3-Clause | false | 32dcb795206d90916d0d8667a21f2701 |
from lib2to3.pgen2.grammar import _DFAS, Grammar\nfrom lib2to3.pytree import _NL, _Convert, _RawNode\nfrom typing import Any, List, Optional, Sequence, Set, Text, Tuple\n\n_Context = Sequence[Any]\n\nclass ParseError(Exception):\n msg: Text\n type: int\n value: Optional[Text]\n context: _Context\n def __... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\lib2to3\pgen2\parse.pyi | parse.pyi | Other | 1,107 | 0.85 | 0.384615 | 0 | react-lib | 902 | 2025-01-15T15:44:49.568031 | GPL-3.0 | false | 287963f0eb5771c28aae56d80d8af9b7 |
from _typeshed import StrPath\nfrom lib2to3.pgen2 import grammar\nfrom lib2to3.pgen2.tokenize import _TokenInfo\nfrom typing import IO, Any, Dict, Iterable, Iterator, List, NoReturn, Optional, Text, Tuple\n\nclass PgenGrammar(grammar.Grammar): ...\n\nclass ParserGenerator:\n filename: StrPath\n stream: IO[Text]\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\lib2to3\pgen2\pgen.pyi | pgen.pyi | Other | 2,140 | 0.85 | 0.630435 | 0 | node-utils | 462 | 2024-07-25T19:04:10.548497 | BSD-3-Clause | false | 291e7a5308fb922171d9ab354da85446 |
import sys\nfrom typing import Dict, Text\n\nENDMARKER: int\nNAME: int\nNUMBER: int\nSTRING: int\nNEWLINE: int\nINDENT: int\nDEDENT: int\nLPAR: int\nRPAR: int\nLSQB: int\nRSQB: int\nCOLON: int\nCOMMA: int\nSEMI: int\nPLUS: int\nMINUS: int\nSTAR: int\nSLASH: int\nVBAR: int\nAMPER: int\nLESS: int\nGREATER: int\nEQUAL: in... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\lib2to3\pgen2\token.pyi | token.pyi | Other | 1,065 | 0.85 | 0.070423 | 0 | awesome-app | 209 | 2023-12-24T18:14:43.084471 | MIT | false | 5a80971e46ca93d4aff133134e6084c9 |
from lib2to3.pgen2.token import * # noqa\nfrom typing import Callable, Iterable, Iterator, List, Text, Tuple\n\n_Coord = Tuple[int, int]\n_TokenEater = Callable[[int, Text, _Coord, _Coord, Text], None]\n_TokenInfo = Tuple[int, Text, _Coord, _Coord, Text]\n\nclass TokenError(Exception): ...\nclass StopTokenizing(Except... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\lib2to3\pgen2\tokenize.pyi | tokenize.pyi | Other | 883 | 0.95 | 0.434783 | 0 | awesome-app | 352 | 2023-12-24T07:39:38.653454 | Apache-2.0 | false | 5b8cd926881152e13c40c0decc844f62 |
import sys\nfrom _typeshed import AnyPath, StrPath\nfrom threading import Thread\nfrom typing import IO, Any, Callable, Dict, Optional, Union\n\nif sys.version_info >= (3,):\n from configparser import RawConfigParser\nelse:\n from ConfigParser import RawConfigParser\n\nif sys.version_info >= (3, 7):\n _Path = ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\logging\config.pyi | config.pyi | Other | 967 | 0.85 | 0.28125 | 0 | vue-tools | 912 | 2025-06-13T12:46:26.347818 | BSD-3-Clause | false | d7b6e2a893605a83f4bae0a98443836c |
import datetime\nimport ssl\nimport sys\nfrom _typeshed import StrPath\nfrom logging import FileHandler, Handler, LogRecord\nfrom socket import SocketKind, SocketType\nfrom typing import Any, Callable, ClassVar, Dict, List, Optional, Tuple, Union\n\nif sys.version_info >= (3, 7):\n from queue import Queue, SimpleQue... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\logging\handlers.pyi | handlers.pyi | Other | 8,847 | 0.95 | 0.317829 | 0.008403 | python-kit | 873 | 2024-07-02T15:15:23.457033 | Apache-2.0 | false | f500fc0afe5a79410f4e7ae24b4ee6df |
import sys\nimport threading\nfrom _typeshed import StrPath\nfrom string import Template\nfrom time import struct_time\nfrom types import FrameType, TracebackType\nfrom typing import (\n IO,\n Any,\n Callable,\n Dict,\n Iterable,\n List,\n Mapping,\n MutableMapping,\n Optional,\n Sequence,... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\logging\__init__.pyi | __init__.pyi | Other | 28,358 | 0.95 | 0.20915 | 0.118316 | react-lib | 970 | 2024-07-13T08:29:28.657582 | GPL-3.0 | false | fe26c50a8649e5440577c9414ca96640 |
import sys\nfrom typing import List, Optional, Tuple\n\nif sys.platform == "win32":\n from . import Table\n\n _Validation: Table\n ActionText: Table\n AdminExecuteSequence: Table\n Condition: Table\n AdminUISequence: Table\n AdvtExecuteSequence: Table\n AdvtUISequence: Table\n AppId: Table\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\msilib\schema.pyi | schema.pyi | Other | 2,214 | 0.85 | 0.010309 | 0 | react-lib | 427 | 2025-01-31T12:21:46.141674 | GPL-3.0 | false | 2d04d6fe3e072459dc9e86d936e48648 |
import sys\nfrom typing import List, Optional, Tuple\n\nif sys.platform == "win32":\n\n _SequenceType = List[Tuple[str, Optional[str], int]]\n\n AdminExecuteSequence: _SequenceType\n AdminUISequence: _SequenceType\n AdvtExecuteSequence: _SequenceType\n InstallExecuteSequence: _SequenceType\n InstallUI... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\msilib\sequence.pyi | sequence.pyi | Other | 356 | 0.85 | 0.071429 | 0 | vue-tools | 974 | 2025-01-26T12:32:43.898558 | MIT | false | 3707f190b9549e5de233a053fec4032a |
import sys\nfrom typing import List, Optional, Tuple\n\nif sys.platform == "win32":\n\n ActionText: List[Tuple[str, str, Optional[str]]]\n UIText: List[Tuple[str, Optional[str]]]\n\n tables: List[str]\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\msilib\text.pyi | text.pyi | Other | 202 | 0.85 | 0.111111 | 0 | vue-tools | 893 | 2025-05-19T11:05:02.804910 | MIT | false | 0f4fcd480fe6f1008e386ac9100e156d |
import sys\nfrom types import ModuleType\nfrom typing import Any, Container, Dict, Iterable, List, Optional, Sequence, Set, Tuple, Type, Union\nfrom typing_extensions import Literal\n\nif sys.platform == "win32":\n from _msi import _Database\n\n AMD64: bool\n if sys.version_info < (3, 7):\n Itanium: boo... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\msilib\__init__.pyi | __init__.pyi | Other | 6,306 | 0.85 | 0.255102 | 0 | react-lib | 884 | 2025-05-15T22:15:19.615825 | GPL-3.0 | false | 70b755feaa6ae8ab9a4fb53cee5e69ca |
from typing import Dict\n\ntopics: Dict[str, str]\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pydoc_data\topics.pyi | topics.pyi | Other | 48 | 0.65 | 0 | 0 | react-lib | 716 | 2023-12-06T23:45:45.431118 | MIT | false | 7c1bf20fbf20645c93b1fbeb8d9f0517 |
import sys\nfrom typing import Dict\n\nif sys.version_info >= (3, 2):\n codes: Dict[str, int]\n messages: Dict[int, str]\n\nXML_ERROR_ABORTED: str\nXML_ERROR_ASYNC_ENTITY: str\nXML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF: str\nXML_ERROR_BAD_CHAR_REF: str\nXML_ERROR_BINARY_ENTITY_REF: str\nXML_ERROR_CANT_CHANGE_FEATUR... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pyexpat\errors.pyi | errors.pyi | Other | 1,275 | 0.85 | 0.022727 | 0 | react-lib | 496 | 2025-02-03T04:17:10.751332 | GPL-3.0 | false | df8bcaac28b82ca1fa0bac4a25776d23 |
XML_CTYPE_ANY: int\nXML_CTYPE_CHOICE: int\nXML_CTYPE_EMPTY: int\nXML_CTYPE_MIXED: int\nXML_CTYPE_NAME: int\nXML_CTYPE_SEQ: int\n\nXML_CQUANT_NONE: int\nXML_CQUANT_OPT: int\nXML_CQUANT_PLUS: int\nXML_CQUANT_REP: int\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pyexpat\model.pyi | model.pyi | Other | 205 | 0.7 | 0 | 0 | awesome-app | 483 | 2024-03-28T11:58:15.122053 | Apache-2.0 | false | d617f4dd67bb631715384779b91351fc |
import pyexpat.errors as errors\nimport pyexpat.model as model\nfrom _typeshed import SupportsRead\nfrom typing import Any, Callable, Dict, List, Optional, Text, Tuple, Union\n\nEXPAT_VERSION: str # undocumented\nversion_info: Tuple[int, int, int] # undocumented\nnative_encoding: str # undocumented\nfeatures: List[T... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\pyexpat\__init__.pyi | __init__.pyi | Other | 3,404 | 0.95 | 0.151899 | 0.014085 | awesome-app | 420 | 2025-04-09T00:15:03.020336 | Apache-2.0 | false | 2b593b881d3037699b9aa408d26965b3 |
import os\nimport sys\nfrom datetime import date, datetime, time\nfrom typing import Any, Callable, Generator, Iterable, Iterator, List, Optional, Text, Tuple, Type, TypeVar, Union\n\n_T = TypeVar("_T")\n\nparamstyle: str\nthreadsafety: int\napilevel: str\nDate = date\nTime = time\nTimestamp = datetime\n\ndef DateFromT... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\sqlite3\dbapi2.pyi | dbapi2.pyi | Other | 11,315 | 0.95 | 0.513333 | 0.046595 | react-lib | 941 | 2024-11-18T20:10:54.617734 | Apache-2.0 | false | 42ef22b5c81641a2159e5c8c64df148a |
from sqlite3.dbapi2 import * # noqa: F403\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\sqlite3\__init__.pyi | __init__.pyi | Other | 43 | 0.75 | 0 | 0 | node-utils | 324 | 2025-01-26T23:30:59.673971 | MIT | false | 7bcb9e3afd5d513c6e43a64f93eb36a7 |
import sys\nfrom abc import abstractmethod\nfrom types import TracebackType\nfrom typing import IO, Callable, Dict, List, MutableMapping, Optional, Text, Tuple, Type\n\nfrom .headers import Headers\nfrom .types import ErrorStream, InputStream, StartResponse, WSGIApplication, WSGIEnvironment\nfrom .util import FileWrapp... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\wsgiref\handlers.pyi | handlers.pyi | Other | 3,125 | 0.95 | 0.419355 | 0 | node-utils | 537 | 2025-05-01T01:09:48.497456 | BSD-3-Clause | false | e3dbf3c523737f69322fbca469f0e00f |
import sys\nfrom typing import List, Optional, Pattern, Tuple, overload\n\n_HeaderList = List[Tuple[str, str]]\n\ntspecials: Pattern[str] # undocumented\n\nclass Headers:\n if sys.version_info < (3, 5):\n def __init__(self, headers: _HeaderList) -> None: ...\n else:\n def __init__(self, headers: Op... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\wsgiref\headers.pyi | headers.pyi | Other | 1,250 | 0.95 | 0.677419 | 0 | python-kit | 462 | 2025-05-14T03:20:20.213408 | Apache-2.0 | false | 9720c3320e8d52641287c5c40ee330db |
import sys\nfrom typing import List, Optional, Type, TypeVar, overload\n\nfrom .handlers import SimpleHandler\nfrom .types import ErrorStream, StartResponse, WSGIApplication, WSGIEnvironment\n\nif sys.version_info < (3,):\n from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer\nelse:\n from http.server im... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\wsgiref\simple_server.pyi | simple_server.pyi | Other | 1,528 | 0.95 | 0.341463 | 0 | node-utils | 449 | 2024-02-14T05:48:21.153778 | BSD-3-Clause | false | 827567ac6e540af69f17ce202205d957 |
# Obsolete, use _typeshed.wsgi directly.\n\nfrom _typeshed.wsgi import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\wsgiref\types.pyi | types.pyi | Other | 71 | 0.75 | 0 | 0.5 | react-lib | 574 | 2023-08-05T13:46:50.197265 | MIT | false | b75a045128ff72f0f939960dd6074253 |
import sys\nfrom typing import IO, Any, Callable, Optional\n\nfrom .types import WSGIEnvironment\n\nclass FileWrapper:\n filelike: IO[bytes]\n blksize: int\n close: Callable[[], None] # only exists if filelike.close exists\n def __init__(self, filelike: IO[bytes], blksize: int = ...) -> None: ...\n def ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\wsgiref\util.pyi | util.pyi | Other | 893 | 0.95 | 0.608696 | 0 | react-lib | 164 | 2025-02-18T08:38:35.318088 | GPL-3.0 | false | 11aa9457c89176fb9d51d7598375a65b |
import sys\nfrom _typeshed.wsgi import ErrorStream, InputStream, WSGIApplication\nfrom typing import Any, Callable, Iterable, Iterator, NoReturn, Optional\n\nclass WSGIWarning(Warning): ...\n\ndef validator(application: WSGIApplication) -> WSGIApplication: ...\n\nclass InputWrapper:\n input: InputStream\n def __i... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\wsgiref\validate.pyi | validate.pyi | Other | 1,861 | 0.85 | 0.615385 | 0 | vue-tools | 989 | 2024-06-20T19:34:31.112593 | BSD-3-Clause | false | 5e92515187d80dab2dd007b5360fdacf |
import xml.parsers as parsers\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\__init__.pyi | __init__.pyi | Other | 30 | 0.65 | 0 | 0 | vue-tools | 722 | 2025-03-20T07:01:43.957521 | GPL-3.0 | false | a828085696269dca975a24ee4577bc78 |
from _typeshed.xml import DOMImplementation\nfrom typing import Any, Callable, Dict, Iterable, Optional, Tuple, Union\n\nwell_known_implementations: Dict[str, str]\nregistered: Dict[str, Callable[[], DOMImplementation]]\n\ndef registerDOMImplementation(name: str, factory: Callable[[], DOMImplementation]) -> None: ...\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\dom\domreg.pyi | domreg.pyi | Other | 462 | 0.85 | 0.2 | 0 | python-kit | 891 | 2024-04-19T08:54:53.632614 | BSD-3-Clause | false | 5d1393a2d3b6417cb15ee768048fc9fe |
from typing import Any\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\dom\expatbuilder.pyi | expatbuilder.pyi | Other | 77 | 0.75 | 0.333333 | 0 | vue-tools | 116 | 2024-05-26T05:00:39.521930 | MIT | false | 0244548e1dba18ff5c58d98bcc50b931 |
from typing import Any\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\dom\minicompat.pyi | minicompat.pyi | Other | 77 | 0.75 | 0.333333 | 0 | vue-tools | 230 | 2024-03-16T21:46:01.189315 | BSD-3-Clause | false | 0244548e1dba18ff5c58d98bcc50b931 |
from typing import Any, Optional\nfrom xml.sax.xmlreader import XMLReader\n\ndef parse(file: str, parser: Optional[XMLReader] = ..., bufsize: Optional[int] = ...): ...\ndef parseString(string: str, parser: Optional[XMLReader] = ...): ...\ndef __getattr__(name: str) -> Any: ... # incomplete\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\dom\minidom.pyi | minidom.pyi | Other | 287 | 0.95 | 0.5 | 0 | node-utils | 674 | 2025-06-27T00:22:16.973064 | MIT | false | bc0413a0ed34645906a7ef90fc92e9d7 |
class NodeFilter:\n FILTER_ACCEPT: int\n FILTER_REJECT: int\n FILTER_SKIP: int\n\n SHOW_ALL: int\n SHOW_ELEMENT: int\n SHOW_ATTRIBUTE: int\n SHOW_TEXT: int\n SHOW_CDATA_SECTION: int\n SHOW_ENTITY_REFERENCE: int\n SHOW_ENTITY: int\n SHOW_PROCESSING_INSTRUCTION: int\n SHOW_COMMENT: int... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\dom\NodeFilter.pyi | NodeFilter.pyi | Other | 457 | 0.85 | 0.105263 | 0 | node-utils | 257 | 2025-06-13T21:02:25.613838 | MIT | false | 436072e7fe7d8168a28d383722cd6738 |
from typing import Any\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\dom\pulldom.pyi | pulldom.pyi | Other | 77 | 0.75 | 0.333333 | 0 | awesome-app | 401 | 2023-07-28T05:26:50.266193 | MIT | false | 0244548e1dba18ff5c58d98bcc50b931 |
from typing import Any\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\dom\xmlbuilder.pyi | xmlbuilder.pyi | Other | 77 | 0.75 | 0.333333 | 0 | react-lib | 397 | 2024-02-24T09:06:32.388399 | Apache-2.0 | false | 0244548e1dba18ff5c58d98bcc50b931 |
from typing import Any\n\nfrom .domreg import getDOMImplementation as getDOMImplementation, registerDOMImplementation as registerDOMImplementation\n\nclass Node:\n ELEMENT_NODE: int\n ATTRIBUTE_NODE: int\n TEXT_NODE: int\n CDATA_SECTION_NODE: int\n ENTITY_REFERENCE_NODE: int\n ENTITY_NODE: int\n PR... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\dom\__init__.pyi | __init__.pyi | Other | 1,844 | 0.95 | 0.294118 | 0.016393 | node-utils | 334 | 2025-05-29T07:34:39.633363 | BSD-3-Clause | false | c12e0a77dc42a2e91ce38fa2df3f5ff3 |
from xml.etree.ElementTree import * # noqa: F403\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\etree\cElementTree.pyi | cElementTree.pyi | Other | 50 | 0.75 | 0 | 0 | python-kit | 367 | 2024-06-03T04:55:16.957029 | Apache-2.0 | false | ff62e9b9e7c1bcb0979ce242c52461e5 |
import sys\nfrom typing import Callable, Optional, Union\nfrom xml.etree.ElementTree import Element\n\nXINCLUDE: str\nXINCLUDE_INCLUDE: str\nXINCLUDE_FALLBACK: str\n\nclass FatalIncludeError(SyntaxError): ...\n\ndef default_loader(href: Union[str, bytes, int], parse: str, encoding: Optional[str] = ...) -> Union[str, El... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\etree\ElementInclude.pyi | ElementInclude.pyi | Other | 873 | 0.95 | 0.2 | 0.15 | node-utils | 317 | 2024-06-26T23:02:19.206212 | BSD-3-Clause | false | 7662d56247305d739cc428d13c3557e5 |
from typing import Callable, Dict, Generator, List, Optional, Pattern, Tuple, TypeVar, Union\nfrom xml.etree.ElementTree import Element\n\nxpath_tokenizer_re: Pattern[str]\n\n_token = Tuple[str, str]\n_next = Callable[[], _token]\n_callback = Callable[[_SelectorContext, List[Element]], Generator[Element, None, None]]\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\etree\ElementPath.pyi | ElementPath.pyi | Other | 1,561 | 0.85 | 0.424242 | 0 | python-kit | 399 | 2025-01-05T07:48:16.667707 | BSD-3-Clause | false | 4cbd7424063f9e9ec931e72519f0919f |
import sys\nfrom _typeshed import AnyPath, FileDescriptor, SupportsWrite\nfrom typing import (\n IO,\n Any,\n Callable,\n Dict,\n Generator,\n ItemsView,\n Iterable,\n Iterator,\n KeysView,\n List,\n MutableSequence,\n Optional,\n Sequence,\n Text,\n Tuple,\n TypeVar,\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\etree\ElementTree.pyi | ElementTree.pyi | Other | 14,905 | 0.95 | 0.292553 | 0.108883 | awesome-app | 435 | 2025-06-02T04:54:17.440036 | GPL-3.0 | false | b45a64d441b98e308c9a1a3bf16f77dd |
import xml.parsers.expat as expat\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\parsers\__init__.pyi | __init__.pyi | Other | 34 | 0.65 | 0 | 0 | vue-tools | 418 | 2024-12-04T23:12:32.343364 | MIT | false | 3b72d96154280886c40edbd592d5dc8a |
from pyexpat.errors import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\parsers\expat\errors.pyi | errors.pyi | Other | 29 | 0.65 | 0 | 0 | react-lib | 26 | 2025-03-20T04:53:19.161035 | Apache-2.0 | false | f32d303aa18a26d315a92e0b867a2750 |
from pyexpat.model import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\parsers\expat\model.pyi | model.pyi | Other | 28 | 0.65 | 0 | 0 | react-lib | 248 | 2024-08-19T07:16:23.028830 | GPL-3.0 | false | eba847991cb9b4adc1797cf102a9b535 |
from pyexpat import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\parsers\expat\__init__.pyi | __init__.pyi | Other | 22 | 0.65 | 0 | 0 | awesome-app | 644 | 2024-04-02T15:04:16.938856 | BSD-3-Clause | false | b79416ea3e5c5140d5cadfe81115c2d8 |
from typing import Any\n\nversion: Any\n\nclass ErrorHandler:\n def error(self, exception): ...\n def fatalError(self, exception): ...\n def warning(self, exception): ...\n\nclass ContentHandler:\n def __init__(self) -> None: ...\n def setDocumentLocator(self, locator): ...\n def startDocument(self): ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\sax\handler.pyi | handler.pyi | Other | 1,391 | 0.85 | 0.521739 | 0 | python-kit | 783 | 2025-05-08T15:03:57.505772 | GPL-3.0 | false | 93485d87bc014a576a87341a19083400 |
import sys\nfrom _typeshed import SupportsWrite\nfrom codecs import StreamReaderWriter, StreamWriter\nfrom io import RawIOBase, TextIOBase\nfrom typing import Mapping, Optional, Text, Union\nfrom xml.sax import handler, xmlreader\n\ndef escape(data: Text, entities: Mapping[Text, Text] = ...) -> Text: ...\ndef unescape(... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\sax\saxutils.pyi | saxutils.pyi | Other | 2,825 | 0.85 | 0.705882 | 0 | react-lib | 667 | 2025-07-08T22:08:31.219906 | MIT | false | 1c211f875e7792c9c947efcc0f4595a1 |
from typing import Mapping, Optional, Tuple\n\nclass XMLReader:\n def __init__(self) -> None: ...\n def parse(self, source): ...\n def getContentHandler(self): ...\n def setContentHandler(self, handler): ...\n def getDTDHandler(self): ...\n def setDTDHandler(self, handler): ...\n def getEntityResol... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\sax\xmlreader.pyi | xmlreader.pyi | Other | 2,477 | 0.85 | 0.90411 | 0 | vue-tools | 758 | 2023-09-27T16:08:47.021829 | MIT | false | f5520ec025f9a093a19d63227b36e01c |
import sys\nfrom typing import IO, Any, Iterable, List, NoReturn, Optional, Text, Union\nfrom xml.sax.handler import ContentHandler, ErrorHandler\nfrom xml.sax.xmlreader import Locator, XMLReader\n\nclass SAXException(Exception):\n def __init__(self, msg: str, exception: Optional[Exception] = ...) -> None: ...\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\xml\sax\__init__.pyi | __init__.pyi | Other | 1,389 | 0.85 | 0.606061 | 0 | react-lib | 280 | 2025-01-18T23:34:31.837885 | GPL-3.0 | false | 864f3a06e4c7e4c2a1b12cdcb12d87e8 |
# Types to support PEP 3333 (WSGI)\n#\n# This module doesn't exist at runtime and neither do the types defined in this\n# file. They are provided for type checking purposes.\n\nfrom sys import _OptExcInfo\nfrom typing import Any, Callable, Dict, Iterable, List, Optional, Protocol, Text, Tuple\n\nclass StartResponse(Pro... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_typeshed\wsgi.pyi | wsgi.pyi | Other | 1,293 | 0.95 | 0.457143 | 0.25 | react-lib | 501 | 2024-04-08T00:07:54.857904 | MIT | false | b16b9f5d72a59e2bb039bae5824e797f |
# Stub-only types. This module does not exist at runtime.\n\nfrom typing import Any, Optional\nfrom typing_extensions import Protocol\n\n# As defined https://docs.python.org/3/library/xml.dom.html#domimplementation-objects\nclass DOMImplementation(Protocol):\n def hasFeature(self, feature: str, version: Optional[str... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_typeshed\xml.pyi | xml.pyi | Other | 528 | 0.95 | 0.4 | 0.25 | node-utils | 444 | 2025-07-01T18:32:30.514373 | BSD-3-Clause | false | 0176cef4f73856df5caa4304d1d3ff63 |
# Utility types for typeshed\n\n# This module contains various common types to be used by typeshed. The\n# module and its types do not exist at runtime. You can use this module\n# outside of typeshed, but no API stability guarantees are made. To use\n# it in implementation (.py) files, the following construct must be u... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\2and3\_typeshed\__init__.pyi | __init__.pyi | Other | 4,615 | 0.95 | 0.174863 | 0.104938 | react-lib | 197 | 2025-02-11T23:19:02.489984 | MIT | false | c85c0b7da1c9b7da5537722e0abadd90 |
from typing import Any, Callable, Type, TypeVar\n\n_T = TypeVar("_T")\n_FuncT = TypeVar("_FuncT", bound=Callable[..., Any])\n\n# These definitions have special processing in mypy\nclass ABCMeta(type):\n def register(cls: ABCMeta, subclass: Type[_T]) -> Type[_T]: ...\n\ndef abstractmethod(callable: _FuncT) -> _FuncT:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\abc.pyi | abc.pyi | Other | 597 | 0.95 | 0.4 | 0.153846 | vue-tools | 50 | 2024-06-02T14:06:58.870350 | MIT | false | a293b3835974856dd90cfc373cc7321b |
# Rename typing to _typing, as not to conflict with typing imported\n# from _ast below when loaded in an unorthodox way by the Dropbox\n# internal Bazel integration.\n\n# The same unorthodox Bazel integration causes issues with sys, which\n# is imported in both modules. unfortunately we can't just rename sys,\n# since ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\ast.pyi | ast.pyi | Other | 9,090 | 0.95 | 0.724638 | 0.078534 | react-lib | 648 | 2023-12-11T14:00:37.529037 | MIT | false | 026e99b4bf1fe30d7f7568980da18e3b |
from typing import Any, Callable\n\ndef _clear() -> None: ...\ndef _ncallbacks() -> int: ...\ndef _run_exitfuncs() -> None: ...\ndef register(func: Callable[..., Any], *args: Any, **kwargs: Any) -> Callable[..., Any]: ...\ndef unregister(func: Callable[..., Any]) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\atexit.pyi | atexit.pyi | Other | 271 | 0.85 | 0.714286 | 0 | vue-tools | 144 | 2024-05-04T22:15:51.263880 | GPL-3.0 | false | bdaa7d96ed2d1fd555b88feaa974494e |
import sys\nfrom _typeshed import (\n AnyPath,\n OpenBinaryMode,\n OpenBinaryModeReading,\n OpenBinaryModeUpdating,\n OpenBinaryModeWriting,\n OpenTextMode,\n ReadableBuffer,\n SupportsKeysAndGetItem,\n SupportsLessThan,\n SupportsLessThanT,\n SupportsWrite,\n)\nfrom ast import AST, mod... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\builtins.pyi | builtins.pyi | Other | 54,524 | 0.75 | 0.583994 | 0.018307 | python-kit | 168 | 2023-09-04T12:30:46.876020 | MIT | false | 6411ff232cc611d06daa15db042f1062 |
import sys\nfrom _typeshed import AnyPath\nfrom typing import Any, Optional, Pattern\n\nif sys.version_info >= (3, 7):\n from py_compile import PycInvalidationMode\n\nif sys.version_info >= (3, 9):\n def compile_dir(\n dir: AnyPath,\n maxlevels: Optional[int] = ...,\n ddir: Optional[AnyPath] ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\compileall.pyi | compileall.pyi | Other | 3,367 | 0.95 | 0.101852 | 0.029412 | react-lib | 957 | 2025-03-14T23:32:24.018974 | GPL-3.0 | false | 6b3b8f98501c435a7d3128cb59e2e299 |
import sys\nfrom _typeshed import AnyPath, StrPath, SupportsWrite\nfrom typing import (\n AbstractSet,\n Any,\n Callable,\n ClassVar,\n Dict,\n Iterable,\n Iterator,\n List,\n Mapping,\n MutableMapping,\n Optional,\n Pattern,\n Sequence,\n Tuple,\n Type,\n TypeVar,\n U... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\configparser.pyi | configparser.pyi | Other | 10,095 | 0.95 | 0.369048 | 0.043478 | python-kit | 231 | 2023-09-07T23:05:25.319086 | MIT | false | 0d8dd0b14de6b519bf0ddd329909f1af |
from typing import Any, Callable, Hashable, List, Optional, SupportsInt, Tuple, TypeVar, Union\n\n_Type = TypeVar("_Type", bound=type)\n_Reduce = Union[Tuple[Callable[..., _Type], Tuple[Any, ...]], Tuple[Callable[..., _Type], Tuple[Any, ...], Optional[Any]]]\n\n__all__: List[str]\n\ndef pickle(\n ob_type: _Type,\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\copyreg.pyi | copyreg.pyi | Other | 739 | 0.85 | 0.3125 | 0 | vue-tools | 86 | 2024-07-17T05:44:32.417803 | Apache-2.0 | false | d334bc42169b6dbc00df4884b6f40485 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.