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 types import ModuleType\nfrom typing import Any, Dict, List, Mapping, Optional, Sequence\n\nWINEXE: bool\nWINSERVICE: bool\n\ndef set_executable(exe: str) -> None: ...\ndef get_executable() -> str: ...\ndef is_forking(argv: Sequence[str]) -> bool: ...\ndef freeze_support() -> None: ...\ndef get_command_line(**kwds... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\spawn.pyi | spawn.pyi | Other | 690 | 0.95 | 0.47619 | 0.0625 | python-kit | 578 | 2023-11-04T23:36:47.352539 | BSD-3-Clause | false | 44f3152778e9810eea9daff6671b59e0 |
import sys\nimport threading\nfrom multiprocessing.context import BaseContext\nfrom typing import Any, Callable, ContextManager, Optional, Union\n\n_LockLike = Union[Lock, RLock]\n\nclass Barrier(threading.Barrier):\n def __init__(\n self, parties: int, action: Optional[Callable[..., Any]] = ..., timeout: Opt... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\synchronize.pyi | synchronize.pyi | Other | 1,799 | 0.95 | 0.617021 | 0.026316 | node-utils | 712 | 2024-07-08T06:14:01.769765 | BSD-3-Clause | false | 0bb03d76944f24af13004b0cc4575232 |
import sys\nfrom logging import Logger\nfrom multiprocessing import connection, pool, sharedctypes, synchronize\nfrom multiprocessing.context import (\n AuthenticationError as AuthenticationError,\n BaseContext,\n BufferTooShort as BufferTooShort,\n DefaultContext,\n Process as Process,\n ProcessError... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\__init__.pyi | __init__.pyi | Other | 3,802 | 0.95 | 0.402299 | 0.116883 | react-lib | 191 | 2024-12-09T05:30:17.773870 | MIT | false | 169c548a30621d5f06e685ec91998926 |
from queue import Queue\nfrom types import TracebackType\nfrom typing import Any, List, Optional, Tuple, Type, TypeVar, Union\n\nfamilies: List[None]\n\n_TConnection = TypeVar("_TConnection", bound=Connection)\n_TListener = TypeVar("_TListener", bound=Listener)\n_Address = Union[str, Tuple[str, int]]\n\nclass Connectio... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\dummy\connection.pyi | connection.pyi | Other | 1,431 | 0.85 | 0.384615 | 0 | python-kit | 861 | 2025-07-02T03:48:05.316675 | BSD-3-Clause | false | ddd8946ea9530f24d53d3944766b9d68 |
import array\nimport threading\nimport weakref\nfrom queue import Queue as Queue\nfrom typing import Any, Callable, Iterable, List, Mapping, Optional, Sequence\n\nJoinableQueue = Queue\nBarrier = threading.Barrier\nBoundedSemaphore = threading.BoundedSemaphore\nCondition = threading.Condition\nEvent = threading.Event\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\multiprocessing\dummy\__init__.pyi | __init__.pyi | Other | 1,572 | 0.85 | 0.288462 | 0 | vue-tools | 736 | 2024-06-11T22:42:49.253592 | Apache-2.0 | false | a097d96cb35b578fa42f8db622458c1b |
import os\nimport sys\nfrom _typeshed import AnyPath, BytesPath, StrPath\nfrom genericpath import exists as exists\nfrom typing import Any, AnyStr, Optional, Sequence, Tuple, TypeVar, overload\n\n_T = TypeVar("_T")\n\nif sys.version_info >= (3, 6):\n from builtins import _PathLike\n\n# ----- os.path variables -----\... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\os\path.pyi | path.pyi | Other | 4,721 | 0.95 | 0.493056 | 0.077519 | react-lib | 267 | 2025-04-09T13:51:25.357511 | MIT | false | d6525de34375179d12889a176a91255d |
import sys\nfrom _typeshed import (\n AnyPath,\n FileDescriptorLike,\n OpenBinaryMode,\n OpenBinaryModeReading,\n OpenBinaryModeUpdating,\n OpenBinaryModeWriting,\n OpenTextMode,\n)\nfrom builtins import OSError, _PathLike\nfrom io import BufferedRandom, BufferedReader, BufferedWriter, FileIO, Text... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\os\__init__.pyi | __init__.pyi | Other | 28,846 | 0.95 | 0.362214 | 0.058583 | vue-tools | 236 | 2024-09-11T12:11:33.705169 | BSD-3-Clause | false | 44abac18ae4dbd23f78045d2bfcbc43f |
from typing import Any, Mapping, Optional\n\nclass Dialog:\n command: Optional[Any] = ...\n master: Optional[Any] = ...\n options: Mapping[str, Any] = ...\n def __init__(self, master: Optional[Any] = ..., **options) -> None: ...\n def show(self, **options) -> Any: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\tkinter\commondialog.pyi | commondialog.pyi | Other | 277 | 0.85 | 0.375 | 0 | vue-tools | 384 | 2025-01-21T03:13:12.619975 | MIT | false | d3ae731449121e55f6ad880dd7829181 |
from typing_extensions import Literal\n\n# These are not actually bools. See #4669\nNO: bool\nYES: bool\nTRUE: bool\nFALSE: bool\nON: bool\nOFF: bool\nN: Literal["n"]\nS: Literal["s"]\nW: Literal["w"]\nE: Literal["e"]\nNW: Literal["nw"]\nSW: Literal["sw"]\nNE: Literal["ne"]\nSE: Literal["se"]\nNS: Literal["ns"]\nEW: Li... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\tkinter\constants.pyi | constants.pyi | Other | 1,886 | 0.95 | 0 | 0.012658 | awesome-app | 976 | 2024-12-18T11:06:31.220956 | Apache-2.0 | false | d3bcbac5d960afdfa435f93ac7a3b707 |
from tkinter import Widget\nfrom typing import Any, Mapping, Optional\n\nDIALOG_ICON: str\n\nclass Dialog(Widget):\n widgetName: str = ...\n num: int = ...\n def __init__(self, master: Optional[Any] = ..., cnf: Mapping[str, Any] = ..., **kw) -> None: ...\n def destroy(self) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\tkinter\dialog.pyi | dialog.pyi | Other | 291 | 0.85 | 0.3 | 0 | python-kit | 209 | 2025-04-27T10:36:21.446060 | GPL-3.0 | false | f25b9a666199a8b26b12849d90a4500c |
from tkinter import Button, Entry, Frame, Listbox, Scrollbar, Toplevel, commondialog\nfrom typing import Any, Dict, Optional, Tuple\n\ndialogstates: Dict[Any, Tuple[Any, Any]]\n\nclass FileDialog:\n title: str = ...\n master: Any = ...\n directory: Optional[Any] = ...\n top: Toplevel = ...\n botframe: Fr... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\tkinter\filedialog.pyi | filedialog.pyi | Other | 2,247 | 0.95 | 0.477612 | 0 | vue-tools | 463 | 2025-04-26T05:10:47.189833 | MIT | false | 47afc5bce2e6a3aa9fcce3fe5db836a1 |
import tkinter\nfrom typing import Any, List, Optional, Tuple, TypeVar, Union, overload\nfrom typing_extensions import Literal, TypedDict\n\nNORMAL: Literal["normal"]\nROMAN: Literal["roman"]\nBOLD: Literal["bold"]\nITALIC: Literal["italic"]\n\ndef nametofont(name: str) -> Font: ...\n\n# See 'FONT DESCRIPTIONS' in font... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\tkinter\font.pyi | font.pyi | Other | 3,812 | 0.95 | 0.28125 | 0.067416 | vue-tools | 475 | 2023-07-18T03:43:28.016031 | MIT | false | 0984152d8e2670f5356f4444686bc34d |
from tkinter.commondialog import Dialog\nfrom typing import Any, Optional\n\nERROR: str\nINFO: str\nQUESTION: str\nWARNING: str\nABORTRETRYIGNORE: str\nOK: str\nOKCANCEL: str\nRETRYCANCEL: str\nYESNO: str\nYESNOCANCEL: str\nABORT: str\nRETRY: str\nIGNORE: str\nCANCEL: str\nYES: str\nNO: str\n\nclass Message(Dialog):\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\tkinter\messagebox.pyi | messagebox.pyi | Other | 1,150 | 0.85 | 0.290323 | 0 | node-utils | 633 | 2025-05-26T04:50:40.769943 | GPL-3.0 | false | ff1bdea55c56f8dffabe56d854493b92 |
import _tkinter\nimport sys\nimport tkinter\nfrom tkinter.font import _FontDescription\nfrom typing import Any, Callable, Dict, List, Optional, Tuple, Union, overload\nfrom typing_extensions import Literal\n\ndef tclobjs_to_py(adict): ...\ndef setup_master(master: Optional[Any] = ...): ...\n\n# from ttk_widget (aka ttk... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\tkinter\ttk.pyi | ttk.pyi | Other | 43,748 | 0.95 | 0.171266 | 0.054668 | react-lib | 787 | 2025-04-12T18:35:29.301533 | MIT | false | 35417de01237c3758bb2fd9c922f09bc |
import sys\nfrom typing import Any, Awaitable, Callable\n\nfrom .case import TestCase\n\nif sys.version_info >= (3, 8):\n class IsolatedAsyncioTestCase(TestCase):\n async def asyncSetUp(self) -> None: ...\n async def asyncTearDown(self) -> None: ...\n def addAsyncCleanup(self, __func: Callable[.... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\async_case.pyi | async_case.pyi | Other | 372 | 0.85 | 0.5 | 0 | python-kit | 451 | 2023-08-22T06:38:09.767393 | GPL-3.0 | true | 177df89a5d31b965ef3991b625f82bdb |
import datetime\nimport logging\nimport sys\nimport unittest.result\nfrom types import TracebackType\nfrom typing import (\n Any,\n AnyStr,\n Callable,\n Container,\n ContextManager,\n Dict,\n FrozenSet,\n Generic,\n Iterable,\n List,\n Mapping,\n NoReturn,\n Optional,\n Patter... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\case.pyi | case.pyi | Other | 12,483 | 0.95 | 0.392982 | 0.054545 | react-lib | 960 | 2024-08-15T03:55:41.031266 | MIT | true | a2cf208ea8ce28f53422781683580967 |
import sys\nimport unittest.case\nimport unittest.result\nimport unittest.suite\nfrom types import ModuleType\nfrom typing import Any, Callable, List, Optional, Sequence, Type\n\n_SortComparisonMethod = Callable[[str, str], int]\n_SuiteClass = Callable[[List[unittest.case.TestCase]], unittest.suite.TestSuite]\n\nclass ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\loader.pyi | loader.pyi | Other | 2,067 | 0.85 | 0.26 | 0 | node-utils | 250 | 2024-01-29T09:57:09.800106 | GPL-3.0 | true | 8c3a20b954366a1458d63ef9345a4795 |
import sys\nimport unittest.case\nimport unittest.loader\nimport unittest.result\nimport unittest.suite\nfrom types import ModuleType\nfrom typing import Any, Iterable, List, Optional, Protocol, Type, Union\n\nclass _TestRunner(Protocol):\n def run(self, test: Union[unittest.suite.TestSuite, unittest.case.TestCase])... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\main.pyi | main.pyi | Other | 1,691 | 0.95 | 0.22449 | 0.044444 | awesome-app | 71 | 2024-02-02T21:52:32.829704 | MIT | true | f0dd0c8580683fc47304a9dee6e9b97e |
import sys\nfrom typing import Any, Callable, Generic, List, Mapping, Optional, Sequence, Tuple, Type, TypeVar, Union, overload\n\n_F = TypeVar("_F", bound=Callable[..., Any])\n_T = TypeVar("_T")\n_TT = TypeVar("_TT", bound=Type[Any])\n_R = TypeVar("_R")\n\n__all__ = [\n "Mock",\n "MagicMock",\n "patch",\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\mock.pyi | mock.pyi | Other | 14,809 | 0.95 | 0.29932 | 0.056098 | react-lib | 825 | 2024-01-09T17:21:43.518460 | MIT | true | c3eec2f91e9df5ce4deca90bbb08513a |
import unittest.case\nfrom types import TracebackType\nfrom typing import Any, Callable, List, Optional, TextIO, Tuple, Type, TypeVar, Union\n\n_SysExcInfoType = Union[Tuple[Type[BaseException], BaseException, TracebackType], Tuple[None, None, None]]\n\n_F = TypeVar("_F", bound=Callable[..., Any])\n\n# undocumented\nde... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\result.pyi | result.pyi | Other | 1,859 | 0.95 | 0.414634 | 0.027027 | node-utils | 841 | 2025-06-15T16:23:15.996898 | Apache-2.0 | true | e449cf43a17268b103b35a968979f346 |
import unittest.case\nimport unittest.result\nimport unittest.suite\nfrom typing import Callable, Optional, TextIO, Tuple, Type, Union\n\n_ResultClassType = Callable[[TextIO, bool, int], unittest.result.TestResult]\n\nclass TextTestResult(unittest.result.TestResult):\n descriptions: bool # undocumented\n dots: b... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\runner.pyi | runner.pyi | Other | 1,339 | 0.95 | 0.257143 | 0.03125 | vue-tools | 442 | 2025-02-22T19:58:06.049731 | BSD-3-Clause | true | 004a02943015b6a6ee87306c2b2e970b |
import unittest.result\nfrom typing import Any, Callable, TypeVar, overload\n\n_F = TypeVar("_F", bound=Callable[..., Any])\n\ndef installHandler() -> None: ...\ndef registerResult(result: unittest.result.TestResult) -> None: ...\ndef removeResult(result: unittest.result.TestResult) -> bool: ...\n@overload\ndef removeH... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\signals.pyi | signals.pyi | Other | 402 | 0.85 | 0.416667 | 0 | awesome-app | 970 | 2023-09-29T10:14:56.622586 | BSD-3-Clause | true | 5fe17a24d084bd3510c205890bcc4ca1 |
import unittest.case\nimport unittest.result\nfrom typing import Iterable, Iterator, List, Union\n\n_TestType = Union[unittest.case.TestCase, TestSuite]\n\nclass BaseTestSuite(Iterable[_TestType]):\n _tests: List[unittest.case.TestCase]\n _removed_tests: int\n def __init__(self, tests: Iterable[_TestType] = ..... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\suite.pyi | suite.pyi | Other | 892 | 0.85 | 0.55 | 0 | awesome-app | 403 | 2025-02-25T16:03:33.011868 | BSD-3-Clause | true | d9aa8e7b6676ac8354519ae461fb36c0 |
from typing import Any, List, Sequence, Tuple, TypeVar\n\n_T = TypeVar("_T")\n_Mismatch = Tuple[_T, _T, int]\n\n_MAX_LENGTH: int\n_PLACEHOLDER_LEN: int\n_MIN_BEGIN_LEN: int\n_MIN_END_LEN: int\n_MIN_COMMON_LEN: int\n_MIN_DIFF_LEN: int\n\ndef _shorten(s: str, prefixlen: int, suffixlen: int) -> str: ...\ndef _common_short... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\util.pyi | util.pyi | Other | 906 | 0.85 | 0.428571 | 0 | react-lib | 347 | 2023-11-19T04:35:57.994501 | MIT | true | c10efa40774d05856e5fbed7fb24977f |
from typing import Optional\nfrom unittest.async_case import *\nfrom unittest.case import *\nfrom unittest.loader import *\nfrom unittest.main import *\nfrom unittest.result import TestResult as TestResult\nfrom unittest.runner import *\nfrom unittest.signals import *\nfrom unittest.suite import *\n\ndef load_tests(loa... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\unittest\__init__.pyi | __init__.pyi | Other | 387 | 0.85 | 0.090909 | 0 | vue-tools | 807 | 2023-10-07T19:18:38.572787 | BSD-3-Clause | true | f3e45a66a6542e8cb711f5faf92b9254 |
from typing import IO, Mapping, Optional, Union\nfrom urllib.response import addinfourl\n\n# Stubs for urllib.error\n\nclass URLError(IOError):\n reason: Union[str, BaseException]\n\nclass HTTPError(URLError, addinfourl):\n code: int\n def __init__(self, url: str, code: int, msg: str, hdrs: Mapping[str, str], ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\urllib\error.pyi | error.pyi | Other | 391 | 0.95 | 0.384615 | 0.111111 | python-kit | 515 | 2024-10-26T05:37:29.207396 | BSD-3-Clause | false | 690aa8f83efbe9041b57ac5973255685 |
import sys\nfrom typing import Any, AnyStr, Callable, Dict, Generic, List, Mapping, NamedTuple, Optional, Sequence, Tuple, Union, overload\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n_Str = Union[bytes, str]\n\nuses_relative: List[str]\nuses_netloc: List[str]\nuses_params: List[str]\nnon_hi... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\urllib\parse.pyi | parse.pyi | Other | 5,436 | 0.95 | 0.328947 | 0.014925 | vue-tools | 283 | 2023-10-25T16:38:03.230664 | Apache-2.0 | false | 6e70da9b61c45eb9108a9e98ebcd83dc |
import os\nimport ssl\nfrom email.message import Message\nfrom http.client import HTTPMessage, HTTPResponse, _HTTPConnectionProtocol\nfrom http.cookiejar import CookieJar\nfrom typing import (\n IO,\n Any,\n Callable,\n ClassVar,\n Dict,\n List,\n Mapping,\n NoReturn,\n Optional,\n Pattern... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\urllib\request.pyi | request.pyi | Other | 15,581 | 0.95 | 0.460411 | 0.006452 | react-lib | 965 | 2024-03-14T08:25:22.998265 | Apache-2.0 | false | 7fb084c63fb675579e92fb8b474a560c |
from email.message import Message\nfrom types import TracebackType\nfrom typing import IO, Any, BinaryIO, Callable, Iterable, List, Optional, Tuple, Type, TypeVar\n\n_AIUT = TypeVar("_AIUT", bound=addbase)\n\nclass addbase(BinaryIO):\n fp: IO[bytes]\n def __init__(self, fp: IO[bytes]) -> None: ...\n def __ente... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\urllib\response.pyi | response.pyi | Other | 2,107 | 0.95 | 0.627451 | 0.086957 | react-lib | 155 | 2023-10-13T07:37:32.419931 | GPL-3.0 | false | 529a069b361cc6d954d5a0138183eeb4 |
import sys\nfrom typing import Iterable, List, NamedTuple, Optional\n\nclass _RequestRate(NamedTuple):\n requests: int\n seconds: int\n\nclass RobotFileParser:\n def __init__(self, url: str = ...) -> None: ...\n def set_url(self, url: str) -> None: ...\n def read(self) -> None: ...\n def parse(self, l... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\urllib\robotparser.pyi | robotparser.pyi | Other | 704 | 0.85 | 0.684211 | 0 | python-kit | 523 | 2024-03-28T03:33:39.882464 | MIT | false | d83b78b0db0bd71e8dae29d9b1173d24 |
import sys\nfrom _typeshed import AnyPath\nfrom types import SimpleNamespace\nfrom typing import Optional, Sequence\n\nclass EnvBuilder:\n system_site_packages: bool\n clear: bool\n symlinks: bool\n upgrade: bool\n with_pip: bool\n if sys.version_info >= (3, 6):\n prompt: Optional[str]\n\n i... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\venv\__init__.pyi | __init__.pyi | Other | 2,967 | 0.95 | 0.282353 | 0 | react-lib | 487 | 2025-05-21T23:03:47.831347 | GPL-3.0 | false | 1b46712fdb9eff70d82cb7b143c14ab7 |
import gzip\nimport http.client\nimport sys\nimport time\nfrom _typeshed import SupportsRead, SupportsWrite\nfrom datetime import datetime\nfrom io import BytesIO\nfrom types import TracebackType\nfrom typing import Any, Callable, Dict, Iterable, List, Mapping, Optional, Protocol, Tuple, Type, Union, overload\nfrom typ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\xmlrpc\client.pyi | client.pyi | Other | 12,285 | 0.95 | 0.405844 | 0.015444 | react-lib | 374 | 2023-08-15T05:35:43.755197 | MIT | false | ce9880d0740969df21046b65e097588f |
import http.server\nimport pydoc\nimport socketserver\nimport sys\nfrom datetime import datetime\nfrom typing import Any, Callable, Dict, Iterable, List, Mapping, Optional, Pattern, Protocol, Tuple, Type, Union\nfrom xmlrpc.client import Fault\n\n_Marshallable = Union[\n None, bool, int, float, str, bytes, tuple, li... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3\xmlrpc\server.pyi | server.pyi | Other | 6,810 | 0.95 | 0.4 | 0.007353 | awesome-app | 999 | 2025-04-13T16:56:51.894468 | MIT | false | 1fc94d7947d5b0c04786c01caf953e4b |
import sys\nfrom typing import Any, Callable, ClassVar, Generic, Iterator, Mapping, TypeVar, Union, overload\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n_T = TypeVar("_T")\n_D = TypeVar("_D")\n\nclass ContextVar(Generic[_T]):\n def __init__(self, name: str, *, default: _T = ...) -> None:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3.7\contextvars.pyi | contextvars.pyi | Other | 1,514 | 0.95 | 0.571429 | 0.055556 | vue-tools | 716 | 2025-01-15T19:29:06.433324 | BSD-3-Clause | false | 2ed6c43738d6d2ef3cdbffcd7d366d52 |
import sys\nfrom typing import Any, Callable, Dict, Generic, Iterable, List, Mapping, Optional, Tuple, Type, TypeVar, Union, overload\n\nif sys.version_info >= (3, 9):\n from types import GenericAlias\n\n_T = TypeVar("_T")\n\nclass _MISSING_TYPE: ...\n\nMISSING: _MISSING_TYPE\n@overload\ndef asdict(obj: Any) -> Dict... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3.7\dataclasses.pyi | dataclasses.pyi | Other | 2,737 | 0.95 | 0.242105 | 0.081395 | node-utils | 966 | 2023-08-22T01:17:39.396241 | Apache-2.0 | false | a464e0cdf35141573b1ef43c21788aae |
from typing import Any, Dict, Tuple, Type, TypeVar\n\n_T = TypeVar("_T")\n\n# TODO: Change the return into a NewType bound to int after pytype/#597\ndef get_cache_token() -> object: ...\n\nclass ABCMeta(type):\n def __new__(__mcls, __name: str, __bases: Tuple[Type[Any], ...], __namespace: Dict[str, Any]) -> ABCMeta:... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3.7\_py_abc.pyi | _py_abc.pyi | Other | 376 | 0.95 | 0.4 | 0.142857 | awesome-app | 293 | 2024-12-30T01:40:49.679552 | MIT | false | de6c81f198119cc2add3f4de7c913f46 |
from _typeshed import SupportsItems\nfrom typing import Generic, Iterable, Optional, Tuple, TypeVar\n\n_T = TypeVar("_T")\n\nclass TopologicalSorter(Generic[_T]):\n def __init__(self, graph: Optional[SupportsItems[_T, Iterable[_T]]] = ...) -> None: ...\n def add(self, node: _T, *predecessors: _T) -> None: ...\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3.9\graphlib.pyi | graphlib.pyi | Other | 592 | 0.85 | 0.625 | 0 | node-utils | 25 | 2024-07-24T07:17:40.477254 | BSD-3-Clause | false | 41736cc7564c28ad27ed2a841c7c5af4 |
import os\nimport typing\nfrom datetime import tzinfo\nfrom typing import Any, AnyStr, Iterable, Optional, Protocol, Sequence, Set, Type, Union\n\n_T = typing.TypeVar("_T", bound="ZoneInfo")\n\nclass _IOBytes(Protocol):\n def read(self, __size: int) -> bytes: ...\n def seek(self, __size: int, __whence: int = ...)... | .venv\Lib\site-packages\jedi\third_party\typeshed\stdlib\3.9\zoneinfo\__init__.pyi | __init__.pyi | Other | 1,183 | 0.95 | 0.4375 | 0.115385 | awesome-app | 702 | 2024-02-08T09:26:12.566460 | GPL-3.0 | false | 26c847b4f4cf57e0b3b737fa5db87adb |
import sys\nfrom abc import ABCMeta\nfrom typing import Any, Dict, Iterator, List, Mapping, Type, TypeVar, Union\n\n_T = TypeVar("_T")\n_S = TypeVar("_S", bound=Type[Enum])\n\n# Note: EnumMeta actually subclasses type directly, not ABCMeta.\n# This is a temporary workaround to allow multiple creation of enums with buil... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\enum.pyi | enum.pyi | Other | 2,643 | 0.95 | 0.465753 | 0.09375 | python-kit | 840 | 2024-11-15T20:36:50.728971 | GPL-3.0 | false | f25e6805a5089e1f879d11ed586cee48 |
from typing import Any, Container, Generic, Iterable, Iterator, Optional, SupportsInt, Text, Tuple, TypeVar, overload\n\n# Undocumented length constants\nIPV4LENGTH: int\nIPV6LENGTH: int\n\n_A = TypeVar("_A", IPv4Address, IPv6Address)\n_N = TypeVar("_N", IPv4Network, IPv6Network)\n_T = TypeVar("_T")\n\ndef ip_address(a... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\ipaddress.pyi | ipaddress.pyi | Other | 5,107 | 0.95 | 0.547297 | 0.007407 | react-lib | 364 | 2025-05-14T19:44:41.480982 | BSD-3-Clause | false | 04b18c3a87282922574289dbb20f85d9 |
import os\nimport sys\nfrom _typeshed import OpenBinaryMode, OpenBinaryModeReading, OpenBinaryModeUpdating, OpenBinaryModeWriting, OpenTextMode\nfrom io import BufferedRandom, BufferedReader, BufferedWriter, FileIO, TextIOWrapper\nfrom types import TracebackType\nfrom typing import IO, Any, BinaryIO, Generator, List, O... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\pathlib2.pyi | pathlib2.pyi | Other | 4,283 | 0.95 | 0.631068 | 0.010309 | awesome-app | 914 | 2023-10-15T22:05:33.239936 | BSD-3-Clause | false | 6790d0560cb397b03b78c85ede270a6a |
from datetime import date, datetime, time\nfrom typing import Any, Dict, Iterable, List, Optional, Sequence, Tuple, Union\n\nScalar = Union[int, float, str, datetime, date, time]\nResult = Union[Tuple[Scalar, ...], Dict[str, Scalar]]\n\nclass Connection(object):\n def __init__(self, user, password, host, database, t... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\pymssql.pyi | pymssql.pyi | Other | 1,685 | 0.85 | 0.477273 | 0 | node-utils | 192 | 2025-02-22T11:30:19.199179 | MIT | false | b78cdae8d79dabb33a524fa714ba6f46 |
from typing import Any, Optional\n\nfrom ._base import Executor\n\nEXTRA_QUEUED_CALLS: Any\n\nclass ProcessPoolExecutor(Executor):\n def __init__(self, max_workers: Optional[int] = ...) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\concurrent\futures\process.pyi | process.pyi | Other | 195 | 0.85 | 0.25 | 0 | python-kit | 507 | 2024-08-29T11:27:00.121458 | MIT | false | 82745a588b697825fde495c0c7bccc5d |
from typing import Any, Callable, Generic, Iterable, Mapping, Optional, Tuple, TypeVar\n\nfrom ._base import Executor, Future\n\n_S = TypeVar("_S")\n\nclass ThreadPoolExecutor(Executor):\n def __init__(self, max_workers: Optional[int] = ..., thread_name_prefix: str = ...) -> None: ...\n\nclass _WorkItem(Generic[_S])... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\concurrent\futures\thread.pyi | thread.pyi | Other | 574 | 0.85 | 0.3125 | 0 | node-utils | 499 | 2024-11-11T15:06:11.111634 | Apache-2.0 | false | 41be21ecc0ebbf07a5c86697dcbc20a3 |
import threading\nfrom abc import abstractmethod\nfrom logging import Logger\nfrom types import TracebackType\nfrom typing import Any, Callable, Container, Generic, Iterable, Iterator, List, Optional, Protocol, Set, Tuple, TypeVar\n\nFIRST_COMPLETED: str\nFIRST_EXCEPTION: str\nALL_COMPLETED: str\nPENDING: str\nRUNNING:... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\concurrent\futures\_base.pyi | _base.pyi | Other | 3,701 | 0.95 | 0.554348 | 0.037975 | python-kit | 308 | 2024-01-27T08:14:54.279652 | MIT | false | 868143b8e332563273bd990b7300c605 |
from ._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 wait as wait,\n)... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\concurrent\futures\__init__.pyi | __init__.pyi | Other | 436 | 0.85 | 0 | 0 | vue-tools | 920 | 2024-02-27T13:49:45.047638 | MIT | false | 9e8668577c64c86045ef3fbf021c242f |
from typing import Any\n\nfrom thrift.Thrift import TProcessor # type: ignore\n\nfastbinary: Any\n\nclass Iface:\n def getName(self): ...\n def getVersion(self): ...\n def getStatus(self): ...\n def getStatusDetails(self): ...\n def getCounters(self): ...\n def getCounter(self, key): ...\n def set... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\fb303\FacebookService.pyi | FacebookService.pyi | Other | 8,692 | 0.95 | 0.761745 | 0 | react-lib | 191 | 2024-06-08T01:14:38.692099 | GPL-3.0 | false | ca755ec8171878f1a4ef31fb61381991 |
from typing import Any\n\nstring_types: Any\nbytes_types: Any\nLOST_STATES: Any\nENVI_VERSION: Any\nENVI_VERSION_KEY: Any\nlog: Any\n\nclass KazooClient:\n logger: Any\n handler: Any\n auth_data: Any\n default_acl: Any\n randomize_hosts: Any\n hosts: Any\n chroot: Any\n state: Any\n state_lis... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\kazoo\client.pyi | client.pyi | Other | 3,400 | 0.85 | 0.477064 | 0.009524 | python-kit | 346 | 2024-04-06T09:01:55.822403 | MIT | false | 9610e48860215027299e466808657585 |
from typing import Any\n\nclass KazooException(Exception): ...\nclass ZookeeperError(KazooException): ...\nclass CancelledError(KazooException): ...\nclass ConfigurationError(KazooException): ...\nclass ZookeeperStoppedError(KazooException): ...\nclass ConnectionDropped(KazooException): ...\nclass LockTimeout(KazooExce... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\kazoo\exceptions.pyi | exceptions.pyi | Other | 2,054 | 0.85 | 0.568966 | 0 | node-utils | 586 | 2025-06-28T03:22:46.646615 | GPL-3.0 | false | ebf69672c113a9a120b357edee67ed81 |
from typing import Any\n\nlog: Any\n\nclass DataWatch:\n def __init__(self, client, path, func=..., *args, **kwargs) -> None: ...\n def __call__(self, func): ...\n\nclass ChildrenWatch:\n def __init__(self, client, path, func=..., allow_session_lost=..., send_event=...) -> None: ...\n def __call__(self, fun... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\kazoo\recipe\watchers.pyi | watchers.pyi | Other | 551 | 0.85 | 0.428571 | 0 | node-utils | 347 | 2023-10-16T09:16:25.645508 | BSD-3-Clause | false | a8677a67afe02d4be19d25f25e936dd7 |
from datetime import datetime\nfrom typing import Any, Callable, Iterable, List, Optional, Set, Text, Tuple, Union\n\nfrom cryptography.hazmat.primitives.asymmetric import dsa, rsa\n\nFILETYPE_PEM: int\nFILETYPE_ASN1: int\nFILETYPE_TEXT: int\nTYPE_RSA: int\nTYPE_DSA: int\n\nclass Error(Exception): ...\n\n_Key = Union[r... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\OpenSSL\crypto.pyi | crypto.pyi | Other | 7,588 | 0.85 | 0.675393 | 0 | node-utils | 368 | 2024-01-15T15:58:55.579099 | Apache-2.0 | false | d75e9ff554de3fc1b05cfe1d32ea1c4e |
from typing import Any\n\nCOLLECTION_ACTIONS: Any\nMEMBER_ACTIONS: Any\n\ndef strip_slashes(name): ...\n\nclass SubMapperParent:\n def submapper(self, **kargs): ...\n def collection(\n self,\n collection_name,\n resource_name,\n path_prefix=...,\n member_prefix=...,\n con... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\routes\mapper.pyi | mapper.pyi | Other | 2,362 | 0.85 | 0.38961 | 0.013889 | vue-tools | 663 | 2023-12-05T14:52:44.383672 | GPL-3.0 | false | 56b02b975738c032bfa06f166f4ea730 |
from typing import Any\n\nclass RoutesException(Exception): ...\nclass MatchException(RoutesException): ...\nclass GenerationException(RoutesException): ...\n\ndef url_for(*args, **kargs): ...\n\nclass URLGenerator:\n mapper: Any\n environ: Any\n def __init__(self, mapper, environ) -> None: ...\n def __call... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\routes\util.pyi | util.pyi | Other | 576 | 0.85 | 0.65 | 0 | vue-tools | 683 | 2024-06-29T10:59:03.958453 | Apache-2.0 | false | e34c93590a7674ea72dcc97e9bac084e |
from . import mapper, util\n\nclass _RequestConfig:\n def __getattr__(self, name): ...\n def __setattr__(self, name, value): ...\n def __delattr__(self, name): ...\n def load_wsgi_environ(self, environ): ...\n\ndef request_config(original=...): ...\n\nMapper = mapper.Mapper\nredirect_to = util.redirect_to\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\routes\__init__.pyi | __init__.pyi | Other | 364 | 0.85 | 0.428571 | 0 | awesome-app | 985 | 2025-07-04T08:15:04.209623 | BSD-3-Clause | false | 42dac0ea1ef49860c81a6e9e45323c72 |
from typing import Any\n\nimport fb303.FacebookService\nfrom thrift.Thrift import TProcessor # type: ignore # We don't have thrift stubs in typeshed\n\nfrom .ttypes import * # noqa: F403\n\nclass Iface(fb303.FacebookService.Iface):\n def Log(self, messages): ...\n\nclass Client(fb303.FacebookService.Client, Iface... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\scribe\scribe.pyi | scribe.pyi | Other | 1,216 | 0.95 | 0.625 | 0 | node-utils | 518 | 2023-10-24T02:50:31.344421 | MIT | false | b4159e77d66978befeed14276cb1408e |
from typing import Any\n\nfastbinary: Any\n\nclass ResultCode:\n OK: Any\n TRY_LATER: Any\n\nclass LogEntry:\n thrift_spec: Any\n category: Any\n message: Any\n def __init__(self, category=..., message=...) -> None: ...\n def read(self, iprot): ...\n def write(self, oprot): ...\n def validate... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\scribe\ttypes.pyi | ttypes.pyi | Other | 383 | 0.85 | 0.444444 | 0 | node-utils | 328 | 2024-01-17T14:22:12.117422 | Apache-2.0 | false | bc13e8a738ce8d05801c7fe0f75846e9 |
from __future__ import print_function\n\nimport types\nimport typing\nimport unittest\nfrom __builtin__ import unichr as unichr\nfrom functools import wraps as wraps\nfrom StringIO import StringIO as StringIO\nfrom typing import (\n Any,\n AnyStr,\n Callable,\n Dict,\n ItemsView,\n Iterable,\n Keys... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\__init__.pyi | __init__.pyi | Other | 4,390 | 0.95 | 0.369231 | 0.028037 | vue-tools | 546 | 2023-09-06T17:05:03.135880 | GPL-3.0 | false | e4b18f587554c4dc747fafee5dd5fcae |
from BaseHTTPServer import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\BaseHTTPServer.pyi | BaseHTTPServer.pyi | Other | 29 | 0.65 | 0 | 0 | react-lib | 409 | 2024-05-11T12:08:37.298203 | GPL-3.0 | false | 3aa1366df5ff152a2757620f907c0a17 |
from CGIHTTPServer import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\CGIHTTPServer.pyi | CGIHTTPServer.pyi | Other | 28 | 0.65 | 0 | 0 | node-utils | 787 | 2025-07-04T21:26:54.570870 | GPL-3.0 | false | 89f4c38f71e5342649d2ebf98b5ea803 |
from collections import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\collections_abc.pyi | collections_abc.pyi | Other | 26 | 0.65 | 0 | 0 | awesome-app | 49 | 2025-07-05T03:30:59.441991 | GPL-3.0 | false | 1bd2bebf32e24cbfa61db0567943cabc |
from ConfigParser import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\configparser.pyi | configparser.pyi | Other | 27 | 0.65 | 0 | 0 | react-lib | 357 | 2024-06-06T14:42:56.069372 | BSD-3-Clause | false | 0d2faaab04b3d3c2cbc7bd7e604bc00a |
from cPickle import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\cPickle.pyi | cPickle.pyi | Other | 22 | 0.65 | 0 | 0 | vue-tools | 282 | 2024-04-19T14:43:36.736406 | GPL-3.0 | false | e00ab8085ba3a6ef0f314bd659f0a1bc |
from email.mime.base import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\email_mime_base.pyi | email_mime_base.pyi | Other | 30 | 0.65 | 0 | 0 | python-kit | 789 | 2025-04-26T03:57:41.614511 | Apache-2.0 | false | ff4bcee3cf8667ab29fba8f01d4849e2 |
from email.mime.multipart import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\email_mime_multipart.pyi | email_mime_multipart.pyi | Other | 35 | 0.65 | 0 | 0 | node-utils | 595 | 2024-03-01T04:03:31.305332 | GPL-3.0 | false | f117994bd56265ad287f2057dba3800e |
from email.mime.nonmultipart import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\email_mime_nonmultipart.pyi | email_mime_nonmultipart.pyi | Other | 38 | 0.65 | 0 | 0 | python-kit | 971 | 2024-06-08T05:35:01.301994 | Apache-2.0 | false | 2f0f0cf7b13e1cb958547790f2565320 |
from email.MIMEText import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\email_mime_text.pyi | email_mime_text.pyi | Other | 29 | 0.65 | 0 | 0 | python-kit | 449 | 2024-10-20T17:16:25.028099 | BSD-3-Clause | false | 720fac1565c973b0a7f9ba4377f4e2ec |
from htmlentitydefs import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\html_entities.pyi | html_entities.pyi | Other | 29 | 0.65 | 0 | 0 | awesome-app | 639 | 2024-03-29T11:43:28.438225 | MIT | false | 3d98944028163d5cc7e2b32d28a264c3 |
from HTMLParser import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\html_parser.pyi | html_parser.pyi | Other | 25 | 0.65 | 0 | 0 | awesome-app | 956 | 2024-08-06T02:47:48.677128 | MIT | false | d236f3eeba7a10ccb670139f71d6bce4 |
from httplib import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\http_client.pyi | http_client.pyi | Other | 22 | 0.65 | 0 | 0 | vue-tools | 727 | 2025-03-17T05:10:50.340074 | BSD-3-Clause | false | ac3f6ad3be26e697f6d9eb7830ef242f |
from cookielib import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\http_cookiejar.pyi | http_cookiejar.pyi | Other | 24 | 0.65 | 0 | 0 | vue-tools | 742 | 2024-11-15T09:53:57.723594 | BSD-3-Clause | false | 0b5610f813514754a252ad72e73a8ef8 |
from Cookie import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\http_cookies.pyi | http_cookies.pyi | Other | 21 | 0.65 | 0 | 0 | awesome-app | 410 | 2025-06-22T04:50:24.059406 | BSD-3-Clause | false | 970e3f1daece8a88ce8c38b754b82126 |
from Queue import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\queue.pyi | queue.pyi | Other | 20 | 0.65 | 0 | 0 | node-utils | 821 | 2024-12-26T00:31:55.574157 | MIT | false | d79b1dec5e43e38bf83c2f21cd2ae7f2 |
from repr import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\reprlib.pyi | reprlib.pyi | Other | 19 | 0.65 | 0 | 0 | react-lib | 406 | 2023-09-18T19:41:16.745482 | BSD-3-Clause | false | 6e3d1da6b332789a74089a908723ae0d |
from SimpleHTTPServer import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\SimpleHTTPServer.pyi | SimpleHTTPServer.pyi | Other | 31 | 0.65 | 0 | 0 | awesome-app | 609 | 2024-12-26T04:17:35.205817 | BSD-3-Clause | false | cee67c1ee87c4a47b9ede0ad827b5f2c |
from SocketServer import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\socketserver.pyi | socketserver.pyi | Other | 27 | 0.65 | 0 | 0 | awesome-app | 983 | 2024-08-16T05:14:40.228509 | BSD-3-Clause | false | 2f32d55931554c4dba19c1830da4e5a5 |
from .urllib.error import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib_error.pyi | urllib_error.pyi | Other | 28 | 0.65 | 0 | 0 | node-utils | 603 | 2025-02-25T10:04:41.924883 | Apache-2.0 | false | d62a122dade693ceda5c03611f91e067 |
from .urllib.parse import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib_parse.pyi | urllib_parse.pyi | Other | 28 | 0.65 | 0 | 0 | vue-tools | 225 | 2024-05-17T20:19:16.856718 | BSD-3-Clause | false | 52aed230c1b89b50c212511ea71522f8 |
from .urllib.request import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib_request.pyi | urllib_request.pyi | Other | 30 | 0.65 | 0 | 0 | node-utils | 733 | 2024-01-30T07:44:39.935374 | Apache-2.0 | false | 6cab3b7235e3533561f8a62233222aa2 |
from .urllib.response import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib_response.pyi | urllib_response.pyi | Other | 31 | 0.65 | 0 | 0 | node-utils | 44 | 2023-09-09T17:27:31.433806 | Apache-2.0 | false | 2cdece13bcc1f06cc37015a2bc994768 |
from robotparser import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib_robotparser.pyi | urllib_robotparser.pyi | Other | 26 | 0.65 | 0 | 0 | vue-tools | 872 | 2025-04-27T05:45:24.360660 | MIT | false | 2001244fb626446c148df7d47c732d20 |
from xmlrpclib import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\xmlrpc_client.pyi | xmlrpc_client.pyi | Other | 24 | 0.65 | 0 | 0 | vue-tools | 312 | 2024-07-31T12:24:33.366827 | GPL-3.0 | false | 06aea48bc661cf0feae9fb43c95e952f |
from dummy_thread import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\_dummy_thread.pyi | _dummy_thread.pyi | Other | 27 | 0.65 | 0 | 0 | node-utils | 595 | 2024-10-22T17:20:51.216333 | GPL-3.0 | false | 773b417b3b12a5d63389481328a4e867 |
from thread import *\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\_thread.pyi | _thread.pyi | Other | 21 | 0.65 | 0 | 0 | react-lib | 96 | 2025-06-13T04:43:26.941631 | MIT | false | a965ea101a280434b22962e8ba88033d |
# Stubs for six.moves\n#\n# Note: Commented out items means they weren't implemented at the time.\n# Uncomment them when the modules have been added to the typeshed.\nimport __builtin__\nimport itertools\nimport os\nimport pipes\nfrom __builtin__ import intern as intern, reduce as reduce, xrange as xrange\nfrom cString... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\__init__.pyi | __init__.pyi | Other | 2,105 | 0.95 | 0.012821 | 0.352113 | python-kit | 53 | 2024-10-20T22:42:42.936430 | BSD-3-Clause | false | 1eba8ba31b5c79907b92aae683ab36f3 |
from urllib import ContentTooShortError as ContentTooShortError\nfrom urllib2 import HTTPError as HTTPError, URLError as URLError\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib\error.pyi | error.pyi | Other | 129 | 0.85 | 0 | 0 | python-kit | 339 | 2024-03-15T23:57:42.501475 | GPL-3.0 | false | 20c31e78df79fbeab15ef8b55102af5d |
from urllib import (\n quote as quote,\n quote_plus as quote_plus,\n splitquery as splitquery,\n splittag as splittag,\n splituser as splituser,\n unquote as unquote,\n unquote_plus as unquote_plus,\n urlencode as urlencode,\n)\nfrom urlparse import (\n ParseResult as ParseResult,\n SplitR... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib\parse.pyi | parse.pyi | Other | 744 | 0.85 | 0 | 0 | react-lib | 39 | 2023-09-27T20:23:52.944536 | MIT | false | 6e907d50cedbaa964995dd327697994f |
from urllib import (\n FancyURLopener as FancyURLopener,\n URLopener as URLopener,\n getproxies as getproxies,\n pathname2url as pathname2url,\n proxy_bypass as proxy_bypass,\n url2pathname as url2pathname,\n urlcleanup as urlcleanup,\n urlretrieve as urlretrieve,\n)\nfrom urllib2 import (\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib\request.pyi | request.pyi | Other | 1,453 | 0.85 | 0 | 0 | vue-tools | 562 | 2023-11-24T18:38:19.926399 | Apache-2.0 | false | 9d106c3651feb58ea6e8beb0350b0900 |
from urllib import addbase as addbase, addclosehook as addclosehook, addinfo as addinfo, addinfourl as addinfourl\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib\response.pyi | response.pyi | Other | 114 | 0.85 | 0 | 0 | node-utils | 97 | 2023-08-02T08:57:42.337778 | BSD-3-Clause | false | c27641fe3d481375587549f828b6d74c |
from robotparser import RobotFileParser as RobotFileParser\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib\robotparser.pyi | robotparser.pyi | Other | 59 | 0.65 | 0 | 0 | node-utils | 530 | 2023-10-22T01:56:03.720968 | BSD-3-Clause | false | 5afd2fdc564f8acca84917c0ab0d39f4 |
import six.moves.urllib.error as error\nimport six.moves.urllib.parse as parse\nimport six.moves.urllib.request as request\nimport six.moves.urllib.response as response\nimport six.moves.urllib.robotparser as robotparser\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\six\moves\urllib\__init__.pyi | __init__.pyi | Other | 217 | 0.85 | 0 | 0 | node-utils | 352 | 2024-05-21T03:25:51.001076 | GPL-3.0 | false | f3ae2c07dd91df9d44c138f71bd45f37 |
from typing import Any\n\nfutures: Any\n\nclass ReturnValueIgnoredError(Exception): ...\n\nclass _TracebackLogger:\n exc_info: Any\n formatted_tb: Any\n def __init__(self, exc_info) -> None: ...\n def activate(self): ...\n def clear(self): ...\n def __del__(self): ...\n\nclass Future:\n def __init_... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\concurrent.pyi | concurrent.pyi | Other | 1,016 | 0.85 | 0.627907 | 0 | python-kit | 692 | 2025-03-21T00:23:47.837265 | BSD-3-Clause | false | f20e98d65bee9d7cc3f5083d90d50545 |
from typing import Any, Dict, NamedTuple, Tuple\n\nsingledispatch: Any\n\nclass KeyReuseError(Exception): ...\nclass UnknownKeyError(Exception): ...\nclass LeakedCallbackError(Exception): ...\nclass BadYieldError(Exception): ...\nclass ReturnValueIgnoredError(Exception): ...\nclass TimeoutError(Exception): ...\n\ndef e... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\gen.pyi | gen.pyi | Other | 2,785 | 0.85 | 0.545455 | 0 | react-lib | 13 | 2024-08-13T07:35:51.620390 | Apache-2.0 | false | 322043eb1d4438147de799186335dfb1 |
from typing import Any\n\nfrom tornado.util import Configurable\n\nclass HTTPClient:\n def __init__(self, async_client_class=..., **kwargs) -> None: ...\n def __del__(self): ...\n def close(self): ...\n def fetch(self, request, **kwargs): ...\n\nclass AsyncHTTPClient(Configurable):\n @classmethod\n de... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\httpclient.pyi | httpclient.pyi | Other | 3,219 | 0.85 | 0.228346 | 0 | vue-tools | 95 | 2024-10-27T21:06:08.360138 | GPL-3.0 | false | 24204dc57c541ff7ac0a0cf82bf530c8 |
from typing import Any\n\nfrom tornado import httputil\nfrom tornado.tcpserver import TCPServer\nfrom tornado.util import Configurable\n\nclass HTTPServer(TCPServer, Configurable, httputil.HTTPServerConnectionDelegate):\n def __init__(self, *args, **kwargs) -> None: ...\n request_callback: Any\n no_keep_alive:... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\httpserver.pyi | httpserver.pyi | Other | 1,617 | 0.85 | 0.298246 | 0 | node-utils | 359 | 2024-08-18T05:17:49.912349 | BSD-3-Clause | false | 2d259f35c0437622e4a16bb385ffd09d |
from typing import Any, Dict, List, NamedTuple, Optional\n\nfrom tornado.util import ObjectDict\n\nclass SSLError(Exception): ...\n\nclass _NormalizedHeaderCache(Dict[Any, Any]):\n size: Any\n queue: Any\n def __init__(self, size) -> None: ...\n def __missing__(self, key): ...\n\nclass HTTPHeaders(Dict[Any,... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\httputil.pyi | httputil.pyi | Other | 2,853 | 0.85 | 0.535354 | 0 | awesome-app | 268 | 2025-01-04T19:09:57.308965 | BSD-3-Clause | false | c73a4fe6157909270777f8f3b8f284ad |
from typing import Any\n\nfrom tornado.util import Configurable\n\nsignal: Any\n\nclass TimeoutError(Exception): ...\n\nclass IOLoop(Configurable):\n NONE: Any\n READ: Any\n WRITE: Any\n ERROR: Any\n @staticmethod\n def instance(): ...\n @staticmethod\n def initialized(): ...\n def install(se... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\ioloop.pyi | ioloop.pyi | Other | 2,798 | 0.85 | 0.670588 | 0 | vue-tools | 774 | 2024-09-30T03:08:10.086645 | Apache-2.0 | false | 1c642ef4bae7d1668a2838002c124bc9 |
from typing import Any, Optional\n\nclass _TimeoutGarbageCollector:\n def __init__(self): ...\n\nclass Condition(_TimeoutGarbageCollector):\n io_loop: Any\n def __init__(self): ...\n def wait(self, timeout: Optional[Any] = ...): ...\n def notify(self, n: int = ...): ...\n def notify_all(self): ...\n\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\locks.pyi | locks.pyi | Other | 1,279 | 0.85 | 0.755556 | 0 | python-kit | 294 | 2025-06-07T03:07:27.827474 | GPL-3.0 | false | 7965b83f4ccec57fa8f1518d70a2584f |
from typing import Any\n\nfrom tornado.util import Configurable\n\nssl: Any\ncertifi: Any\nxrange: Any\nssl_match_hostname: Any\nSSLCertificateError: Any\n\ndef bind_sockets(port, address=..., family=..., backlog=..., flags=...): ...\ndef bind_unix_socket(file, mode=..., backlog=...): ...\ndef add_accept_handler(sock, ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\netutil.pyi | netutil.pyi | Other | 1,350 | 0.85 | 0.5 | 0 | python-kit | 719 | 2023-08-30T01:39:16.149428 | GPL-3.0 | false | 2ad999e18eb5ff74e867efabc249f8bf |
from typing import Any, Optional\n\nlong = int\nCalledProcessError: Any\n\ndef cpu_count() -> int: ...\ndef fork_processes(num_processes, max_restarts: int = ...) -> Optional[int]: ...\ndef task_id() -> int: ...\n\nclass Subprocess:\n STREAM: Any = ...\n io_loop: Any = ...\n stdin: Any = ...\n stdout: Any =... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\process.pyi | process.pyi | Other | 662 | 0.85 | 0.375 | 0 | python-kit | 79 | 2024-09-11T02:43:45.517591 | BSD-3-Clause | false | 98e5e351e9d336a561106b0f5a4f6973 |
from typing import Any\n\nssl: Any\n\nclass TCPServer:\n io_loop: Any\n ssl_options: Any\n max_buffer_size: Any\n read_chunk_size: Any\n def __init__(self, io_loop=..., ssl_options=..., max_buffer_size=..., read_chunk_size=...) -> None: ...\n def listen(self, port, address=...): ...\n def add_socke... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\tcpserver.pyi | tcpserver.pyi | Other | 556 | 0.85 | 0.529412 | 0 | python-kit | 700 | 2025-04-28T13:07:49.004859 | GPL-3.0 | false | ebc4b1012ccc06be257c1aaecdc68ca1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.