content stringlengths 1 103k ⌀ | path stringlengths 8 216 | filename stringlengths 2 179 | language stringclasses 15
values | size_bytes int64 2 189k | quality_score float64 0.5 0.95 | complexity float64 0 1 | documentation_ratio float64 0 1 | repository stringclasses 5
values | stars int64 0 1k | created_date stringdate 2023-07-10 19:21:08 2025-07-09 19:11:45 | license stringclasses 4
values | is_test bool 2
classes | file_hash stringlengths 32 32 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
import logging\nimport unittest\nfrom typing import Any, Callable, Generator, Optional, overload\n\nAsyncHTTPClient: Any\ngen: Any\nHTTPServer: Any\nIOLoop: Any\nnetutil: Any\nSimpleAsyncHTTPClient: Any\n\ndef get_unused_port(): ...\ndef bind_unused_port(): ...\n\nclass AsyncTestCase(unittest.TestCase):\n def __init... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\testing.pyi | testing.pyi | Other | 1,865 | 0.85 | 0.571429 | 0 | node-utils | 486 | 2024-08-21T15:33:19.005889 | Apache-2.0 | true | 6c833f8b768ff88a64eaaa7c03b212ec |
from typing import Any, Dict\n\nxrange: Any\n\nclass ObjectDict(Dict[Any, Any]):\n def __getattr__(self, name): ...\n def __setattr__(self, name, value): ...\n\nclass GzipDecompressor:\n decompressobj: Any\n def __init__(self) -> None: ...\n def decompress(self, value, max_length=...): ...\n @property... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\util.pyi | util.pyi | Other | 1,072 | 0.85 | 0.5 | 0 | vue-tools | 634 | 2023-09-03T07:25:28.847945 | GPL-3.0 | false | a08d0addfc50e068cedf6b7ac8f13aeb |
import sys\nfrom typing import Any, Callable, Dict, List, Optional\n\nfrom tornado import httputil\n\nMIN_SUPPORTED_SIGNED_VALUE_VERSION: Any\nMAX_SUPPORTED_SIGNED_VALUE_VERSION: Any\nDEFAULT_SIGNED_VALUE_VERSION: Any\nDEFAULT_SIGNED_VALUE_MIN_VERSION: Any\n\nif sys.version_info >= (3, 5):\n from typing import Await... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2\tornado\web.pyi | web.pyi | Other | 8,848 | 0.85 | 0.597744 | 0 | awesome-app | 899 | 2023-09-11T08:05:21.522596 | Apache-2.0 | false | 34b49366498e6ce210dca0abbf3bdd1b |
from typing import Any\n\ndef mk_gen(): ...\ndef mk_awaitable(): ...\ndef mk_coroutine(): ...\n\nGenerator: Any\nAwaitable: Any\nCoroutine: Any\n\ndef isawaitable(obj): ...\n\nPATCHED: Any\n\ndef patch(patch_inspect: bool = ...): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\backports_abc.pyi | backports_abc.pyi | Other | 220 | 0.85 | 0.333333 | 0 | awesome-app | 259 | 2025-02-27T21:45:13.930012 | Apache-2.0 | false | 26fb2277b7c3cb52618935881884b047 |
def where() -> str: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\certifi.pyi | certifi.pyi | Other | 24 | 0.65 | 1 | 0 | awesome-app | 138 | 2024-04-18T17:07:21.114414 | MIT | false | d08b785d8e0c503e095ffc848565f78b |
import datetime\nfrom typing import Any, Dict, Iterator, List, Optional, Text, Tuple, Type, TypeVar, Union\n\n_RetType = Union[Type[float], Type[datetime.datetime]]\n_SelfT = TypeVar("_SelfT", bound=croniter)\n\nclass CroniterError(ValueError): ...\nclass CroniterBadCronError(CroniterError): ...\nclass CroniterBadDateE... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\croniter.pyi | croniter.pyi | Other | 1,934 | 0.95 | 0.418605 | 0.05 | vue-tools | 270 | 2025-06-06T13:32:05.887410 | Apache-2.0 | false | afd009e6114b213fa23a74c7bf960084 |
import datetime\nfrom typing import Any, List, Mapping, Optional, Set, Tuple, Union\n\n__version__: str\n\ndef parse(\n date_string: str,\n date_formats: Optional[Union[List[str], Tuple[str], Set[str]]] = ...,\n languages: Optional[Union[List[str], Tuple[str], Set[str]]] = ...,\n locales: Optional[Union[Lis... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\dateparser.pyi | dateparser.pyi | Other | 522 | 0.95 | 0.142857 | 0 | awesome-app | 325 | 2025-02-01T19:19:16.688871 | MIT | false | cbbbf28e0f789c03375191dfcf83302f |
import sys\nfrom typing import Any, Callable, Dict, Iterator, List, NamedTuple, Optional, Pattern, Text, Tuple, TypeVar\n\n_C = TypeVar("_C", bound=Callable[..., Any])\n_Func = TypeVar("_Func", bound=Callable[..., Any])\n_T = TypeVar("_T")\n\ndef get_init(cls): ...\n\nif sys.version_info >= (3,):\n from inspect impo... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\decorator.pyi | decorator.pyi | Other | 2,760 | 0.85 | 0.209877 | 0.013889 | python-kit | 190 | 2024-12-02T17:40:37.433708 | BSD-3-Clause | false | 888b8ea7a12761723d827553fcf77e20 |
from typing import Any, Callable, Iterable, Optional, TypeVar, Union, overload\n\n_T = TypeVar("_T")\n_S = TypeVar("_S")\n@overload\ndef first(iterable: Iterable[_T]) -> Optional[_T]: ...\n@overload\ndef first(iterable: Iterable[_T], default: _S) -> Union[_T, _S]: ...\n@overload\ndef first(iterable: Iterable[_T], defau... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\first.pyi | first.pyi | Other | 481 | 0.85 | 0.333333 | 0 | python-kit | 400 | 2024-04-11T04:11:27.105495 | GPL-3.0 | false | fd87b065968d5e096bda7a420bc3023e |
from types import ModuleType\nfrom typing import IO, Any, Callable, Dict, Iterable, List, Optional, Sequence, Text, Union\n\nclass Error(Exception): ...\n\nFlagsError = Error\n\nclass DuplicateFlag(FlagsError): ...\nclass CantOpenFlagFileError(FlagsError): ...\nclass DuplicateFlagCannotPropagateNoneToSwig(DuplicateFlag... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\gflags.pyi | gflags.pyi | Other | 10,776 | 0.95 | 0.407051 | 0.035433 | node-utils | 590 | 2023-07-18T11:55:28.691033 | GPL-3.0 | false | 5b81cca49932197f2af58b082dca34f6 |
from datetime import datetime\nfrom typing import IO, Any, Callable, Generator, Mapping, MutableMapping, Optional, Text, Tuple, Union\n\n_serializer = Any # must be an object that has "dumps" and "loads" attributes (e.g. the json module)\n\ndef want_bytes(s: Union[Text, bytes], encoding: Text = ..., errors: Text = ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\itsdangerous.pyi | itsdangerous.pyi | Other | 8,405 | 0.95 | 0.391304 | 0 | python-kit | 98 | 2023-11-09T04:14:07.410027 | MIT | false | 11992112b060b3aee88f162de62e06d7 |
import sys\nfrom typing import Any, Callable, Generic, List, Mapping, Optional, Sequence, Text, 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",... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\mock.pyi | mock.pyi | Other | 14,819 | 0.95 | 0.29932 | 0.056098 | node-utils | 180 | 2025-03-17T15:25:49.584717 | MIT | false | cf3d087bb3d2fe48af629cf72024c3a4 |
import abc\nimport sys\nfrom typing import Any, Callable, Dict, Generic, ItemsView, KeysView, Mapping, Optional, Type, TypeVar, Union, ValuesView\n\n_T = TypeVar("_T")\n_U = TypeVar("_U")\n\n# Internal mypy fallback type for all typed dicts (does not exist at runtime)\nclass _TypedDict(Mapping[str, object], metaclass=a... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\mypy_extensions.pyi | mypy_extensions.pyi | Other | 2,198 | 0.95 | 0.608696 | 0.225 | vue-tools | 848 | 2025-05-28T18:44:12.460688 | GPL-3.0 | false | be89dc4d0b8b5852fd16169514185835 |
import textwrap\nfrom typing import IO, Any, Callable, Dict, Generic, List, Optional, Text, Tuple, Type, TypeVar, Union, overload\n\n_TB = TypeVar("_TB", bound="_BaseEntry")\n_TP = TypeVar("_TP", bound="POFile")\n_TM = TypeVar("_TM", bound="MOFile")\n\ndefault_encoding: str\n\n# wrapwidth: int\n# encoding: str\n# check... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\polib.pyi | polib.pyi | Other | 5,764 | 0.95 | 0.538462 | 0.020833 | python-kit | 35 | 2024-11-09T15:17:41.703297 | GPL-3.0 | false | 47433f940742b1563f35ccf94de29ade |
# TODO(MichalPokorny): more precise types\n\nfrom typing import Any, List, Text, Tuple\n\nGLOBAL_ACK_EINTR: int\nGLOBAL_ALL: int\nGLOBAL_DEFAULT: int\nGLOBAL_NOTHING: int\nGLOBAL_SSL: int\nGLOBAL_WIN32: int\n\ndef global_init(option: int) -> None: ...\ndef global_cleanup() -> None: ...\n\nversion: str\n\ndef version_in... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pycurl.pyi | pycurl.pyi | Other | 13,755 | 0.95 | 0.045031 | 0.00316 | react-lib | 715 | 2024-04-15T03:33:23.355493 | GPL-3.0 | false | d71a0c86e5108deb08f8938cadee188d |
from typing import Any, List, Optional, Type, TypeVar\n\n_T = TypeVar("_T")\n\ndef none_throws(optional: Optional[_T], message: str = ...) -> _T: ...\ndef safe_cast(new_type: Type[_T], value: Any) -> _T: ...\ndef ParameterSpecification(__name: str) -> List[Type[Any]]: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\pyre_extensions.pyi | pyre_extensions.pyi | Other | 267 | 0.85 | 0.428571 | 0 | node-utils | 32 | 2024-01-23T15:55:59.715366 | Apache-2.0 | false | 57a5308920bbbabcbbfd481d0ed42b5a |
from typing import Any, Callable, Generic, Mapping, TypeVar, overload\n\n_T = TypeVar("_T")\n\nclass _SingleDispatchCallable(Generic[_T]):\n registry: Mapping[Any, Callable[..., _T]]\n def dispatch(self, cls: Any) -> Callable[..., _T]: ...\n @overload\n def register(self, cls: Any) -> Callable[[Callable[...... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\singledispatch.pyi | singledispatch.pyi | Other | 624 | 0.85 | 0.466667 | 0 | awesome-app | 419 | 2025-04-04T19:14:34.134350 | Apache-2.0 | false | 28fab22a501ecc33bce58555291c6067 |
from typing import Any, Callable, Container, Dict, Iterable, List, Mapping, NamedTuple, Optional, Sequence, Union\n\nPRESERVE_WHITESPACE: bool\nWIDE_CHARS_MODE: bool\ntabulate_formats: List[str]\n\nclass Line(NamedTuple):\n begin: str\n hline: str\n sep: str\n end: str\n\nclass DataRow(NamedTuple):\n beg... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\tabulate.pyi | tabulate.pyi | Other | 1,413 | 0.85 | 0.116279 | 0 | node-utils | 841 | 2025-02-05T07:02:01.582461 | BSD-3-Clause | false | 95735b56951ffee60462a80dd15e26f1 |
from typing import Any, Iterable, Optional, Text\n\ndef colored(\n text: Text, color: Optional[Text] = ..., on_color: Optional[Text] = ..., attrs: Optional[Iterable[Text]] = ...\n) -> Text: ...\ndef cprint(\n text: Text, color: Optional[Text] = ..., on_color: Optional[Text] = ..., attrs: Optional[Iterable[Text]] ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\termcolor.pyi | termcolor.pyi | Other | 350 | 0.85 | 0.25 | 0 | awesome-app | 238 | 2024-07-06T23:47:56.461482 | GPL-3.0 | false | 98ad5ca3bb6f8fc5abedaae8ac582199 |
import sys\nfrom _typeshed import StrPath, SupportsWrite\nfrom typing import IO, Any, List, Mapping, MutableMapping, Text, Type, Union\n\nif sys.version_info >= (3, 6):\n _PathLike = StrPath\nelif sys.version_info >= (3, 4):\n import pathlib\n\n _PathLike = Union[StrPath, pathlib.PurePath]\nelse:\n _PathLik... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\toml.pyi | toml.pyi | Other | 697 | 0.85 | 0.315789 | 0 | node-utils | 68 | 2024-10-30T11:14:30.194973 | MIT | false | 393ca8756b9b9f727b8cd604b2475d4b |
import abc\nimport sys\nfrom typing import (\n TYPE_CHECKING as TYPE_CHECKING,\n Any,\n Callable,\n ClassVar as ClassVar,\n ContextManager as ContextManager,\n Counter as Counter,\n DefaultDict as DefaultDict,\n Deque as Deque,\n Dict,\n ItemsView,\n KeysView,\n Mapping,\n NewType... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\typing_extensions.pyi | typing_extensions.pyi | Other | 3,358 | 0.95 | 0.324561 | 0.083333 | react-lib | 762 | 2024-07-23T11:41:04.769794 | GPL-3.0 | false | 7f5a96c1d0773b828701490a1856b979 |
from typing import IO, Any, AnyStr\n\n__version__: str\n\ndef encode(\n obj: Any,\n ensure_ascii: bool = ...,\n double_precision: int = ...,\n encode_html_chars: bool = ...,\n escape_forward_slashes: bool = ...,\n sort_keys: bool = ...,\n indent: int = ...,\n) -> str: ...\ndef dumps(\n obj: Any,... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\ujson.pyi | ujson.pyi | Other | 938 | 0.85 | 0.171429 | 0 | vue-tools | 732 | 2023-08-13T16:45:58.018767 | GPL-3.0 | false | 4d2b1c1b7fc45da3eeeffdcc33e3296f |
from _typeshed import AnyPath\nfrom typing import IO, Any, AnyStr, Callable, ContextManager, Optional, Text, Type\n\ndef replace_atomic(src: AnyStr, dst: AnyStr) -> None: ...\ndef move_atomic(src: AnyStr, dst: AnyStr) -> None: ...\n\nclass AtomicWriter(object):\n def __init__(self, path: AnyPath, mode: Text = ..., o... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\atomicwrites\__init__.pyi | __init__.pyi | Other | 850 | 0.85 | 0.6875 | 0 | awesome-app | 923 | 2023-08-21T08:12:53.075835 | BSD-3-Clause | false | 1e309b29a6d54f43d9e98a4fe0d15700 |
from typing import Callable, Optional, TypeVar, overload\n\nfrom . import _ConverterType\n\n_T = TypeVar("_T")\n\ndef optional(converter: _ConverterType[_T]) -> _ConverterType[Optional[_T]]: ...\n@overload\ndef default_if_none(default: _T) -> _ConverterType[_T]: ...\n@overload\ndef default_if_none(*, factory: Callable[... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\attr\converters.pyi | converters.pyi | Other | 346 | 0.85 | 0.272727 | 0 | awesome-app | 666 | 2025-03-21T15:00:11.404954 | MIT | false | 31cd087e5e186022607d3d91934c4d52 |
from typing import Any\n\nclass FrozenInstanceError(AttributeError):\n msg: str = ...\n\nclass AttrsAttributeNotFoundError(ValueError): ...\nclass NotAnAttrsClassError(ValueError): ...\nclass DefaultAlreadySetError(RuntimeError): ...\nclass UnannotatedAttributeError(RuntimeError): ...\nclass PythonTooOldError(Runtim... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\attr\exceptions.pyi | exceptions.pyi | Other | 458 | 0.85 | 0.533333 | 0 | vue-tools | 542 | 2024-10-18T04:31:56.809875 | BSD-3-Clause | false | 823d9bd4de06789c0985b988e628addc |
from typing import Any, Union\n\nfrom . import Attribute, _FilterType\n\ndef include(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...\ndef exclude(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\attr\filters.pyi | filters.pyi | Other | 215 | 0.85 | 0.333333 | 0 | awesome-app | 174 | 2024-08-28T01:21:49.325535 | MIT | false | 74fe0d114956cd64d13c25b34844998a |
from typing import (\n Any,\n AnyStr,\n Callable,\n Container,\n Iterable,\n List,\n Mapping,\n Match,\n Optional,\n Tuple,\n Type,\n TypeVar,\n Union,\n overload,\n)\n\nfrom . import _ValidatorType\n\n_T = TypeVar("_T")\n_T1 = TypeVar("_T1")\n_T2 = TypeVar("_T2")\n_T3 = TypeVa... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\attr\validators.pyi | validators.pyi | Other | 1,814 | 0.95 | 0.240741 | 0.039216 | node-utils | 154 | 2024-10-27T18:34:45.711359 | GPL-3.0 | false | f89749e7c6f0c7d457eca54381fff0e8 |
class VersionInfo:\n @property\n def year(self) -> int: ...\n @property\n def minor(self) -> int: ...\n @property\n def micro(self) -> int: ...\n @property\n def releaselevel(self) -> str: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\attr\_version_info.pyi | _version_info.pyi | Other | 209 | 0.85 | 0.555556 | 0 | python-kit | 565 | 2024-02-02T02:21:56.588297 | GPL-3.0 | false | ea38221124a8a90c1fa60b3e4940cdf4 |
from typing import Any, Callable, Dict, Generic, List, Mapping, Optional, Sequence, Tuple, Type, TypeVar, Union, overload\n\n# `import X as X` is required to make these public\nfrom . import converters as converters, exceptions as exceptions, filters as filters, validators as validators\nfrom ._version_info import Vers... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\attr\__init__.pyi | __init__.pyi | Other | 8,149 | 0.95 | 0.128405 | 0.183761 | react-lib | 597 | 2024-01-20T19:45:35.410047 | MIT | false | fc0ac4b0df6d6528cb3edc2a80c28f04 |
class CertificateError(ValueError): ...\n\ndef match_hostname(cert, hostname): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\backports\ssl_match_hostname.pyi | ssl_match_hostname.pyi | Other | 81 | 0.65 | 0.666667 | 0 | node-utils | 292 | 2025-03-07T13:23:34.163810 | MIT | false | 229d0ee64e9d0c7ee0143f78111a11e8 |
from typing import Any\n\n# Explicitly mark this package as incomplete.\ndef __getattr__(name: str) -> Any: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\backports\__init__.pyi | __init__.pyi | Other | 109 | 0.95 | 0.25 | 0.333333 | python-kit | 905 | 2023-09-18T17:58:20.003578 | Apache-2.0 | false | 4f487a5744de462488d6524c88ffa091 |
from typing import Any, MutableMapping, Text\n\n_Attrs = MutableMapping[Any, Text]\n\ndef nofollow(attrs: _Attrs, new: bool = ...) -> _Attrs: ...\ndef target_blank(attrs: _Attrs, new: bool = ...) -> _Attrs: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\bleach\callbacks.pyi | callbacks.pyi | Other | 206 | 0.85 | 0.333333 | 0 | node-utils | 198 | 2024-05-11T21:56:11.910828 | Apache-2.0 | false | f63b67c254b62e5a338e1fb41f541a9f |
from typing import Any, Container, Iterable, List, MutableMapping, Optional, Pattern, Protocol, Text\n\n_Attrs = MutableMapping[Any, Text]\n\nclass _Callback(Protocol):\n def __call__(self, attrs: _Attrs, new: bool = ...) -> _Attrs: ...\n\nDEFAULT_CALLBACKS: List[_Callback]\n\nTLDS: List[Text]\n\ndef build_url_re(tl... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\bleach\linkifier.pyi | linkifier.pyi | Other | 978 | 0.95 | 0.258065 | 0 | python-kit | 439 | 2024-03-23T12:07:10.832639 | MIT | false | 21ef4b8e3a2294fdfd142986c35c4849 |
from typing import Any, Callable, Container, Dict, Iterable, List, Optional, Pattern, Text, Union\n\nALLOWED_TAGS: List[Text]\nALLOWED_ATTRIBUTES: Dict[Text, List[Text]]\nALLOWED_STYLES: List[Text]\nALLOWED_PROTOCOLS: List[Text]\n\nINVISIBLE_CHARACTERS: Text\nINVISIBLE_CHARACTERS_RE: Pattern[Text]\nINVISIBLE_REPLACEMEN... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\bleach\sanitizer.pyi | sanitizer.pyi | Other | 1,148 | 0.95 | 0.205882 | 0.037037 | awesome-app | 533 | 2025-06-24T03:43:07.584540 | Apache-2.0 | false | 6fff47ea6110cee275d30eba1dda2022 |
from collections import OrderedDict\nfrom typing import Any, Mapping, Text, overload\n\ndef force_unicode(text: Text) -> Text: ...\n@overload\ndef alphabetize_attributes(attrs: None) -> None: ...\n@overload\ndef alphabetize_attributes(attrs: Mapping[Any, Text]) -> OrderedDict[Any, Text]: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\bleach\utils.pyi | utils.pyi | Other | 286 | 0.85 | 0.375 | 0 | node-utils | 909 | 2023-11-15T10:42:14.284947 | BSD-3-Clause | false | 8e9c08ec9e0b76fb05fcdecfc570a788 |
from typing import Any, Container, Iterable, Optional, Text\n\nfrom bleach.linkifier import DEFAULT_CALLBACKS as DEFAULT_CALLBACKS, Linker as Linker, _Callback\nfrom bleach.sanitizer import (\n ALLOWED_ATTRIBUTES as ALLOWED_ATTRIBUTES,\n ALLOWED_PROTOCOLS as ALLOWED_PROTOCOLS,\n ALLOWED_STYLES as ALLOWED_STYLE... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\bleach\__init__.pyi | __init__.pyi | Other | 841 | 0.95 | 0.074074 | 0 | python-kit | 614 | 2024-11-21T01:11:49.965452 | GPL-3.0 | false | 9a090920d1235bd504b77a0d113c07d0 |
from typing import Any, Optional\n\nfrom boto.auth_handler import AuthHandler\n\nSIGV4_DETECT: Any\n\nclass HmacKeys:\n host: Any\n def __init__(self, host, config, provider) -> None: ...\n def update_provider(self, provider): ...\n def algorithm(self): ...\n def sign_string(self, string_to_sign): ...\n\... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\auth.pyi | auth.pyi | Other | 4,141 | 0.85 | 0.642202 | 0 | vue-tools | 767 | 2025-06-18T19:13:11.990033 | BSD-3-Clause | false | 7fc80c3462886173a6ac6c6962ecc062 |
from typing import Any\n\nfrom boto.plugin import Plugin\n\nclass NotReadyToAuthenticate(Exception): ...\n\nclass AuthHandler(Plugin):\n capability: Any\n def __init__(self, host, config, provider) -> None: ...\n def add_auth(self, http_request): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\auth_handler.pyi | auth_handler.pyi | Other | 251 | 0.85 | 0.4 | 0 | python-kit | 55 | 2024-04-14T23:20:24.956542 | BSD-3-Clause | false | efcf7b9e6a6d07e7ee917cd5c490cd3f |
import sys\nfrom typing import Any\n\nif sys.version_info >= (3,):\n from base64 import encodebytes as encodebytes\nelse:\n from base64 import encodestring\n\n encodebytes = encodestring\n\nexpanduser: Any\n\nif sys.version_info >= (3, 0):\n StandardError = Exception\nelse:\n from __builtin__ import Stan... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\compat.pyi | compat.pyi | Other | 384 | 0.85 | 0.1 | 0 | react-lib | 947 | 2024-01-12T22:50:25.515302 | MIT | false | 7ad5e5c0b72d0d7778cfa5758e70bd0a |
from typing import Any, Optional\n\nfrom six.moves import http_client\n\nHAVE_HTTPS_CONNECTION: bool\nON_APP_ENGINE: Any\nPORTS_BY_SECURITY: Any\nDEFAULT_CA_CERTS_FILE: Any\n\nclass HostConnectionPool:\n queue: Any\n def __init__(self) -> None: ...\n def size(self): ...\n def put(self, conn): ...\n def g... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\connection.pyi | connection.pyi | Other | 5,679 | 0.95 | 0.293103 | 0 | react-lib | 176 | 2024-02-19T23:11:35.812752 | BSD-3-Clause | false | 1e77732b7368c90d16ee68be6b2aa1aa |
from typing import Any, Optional\n\nfrom boto.compat import StandardError\n\nclass BotoClientError(StandardError):\n reason: Any\n def __init__(self, reason, *args) -> None: ...\n\nclass SDBPersistenceError(StandardError): ...\nclass StoragePermissionsError(BotoClientError): ...\nclass S3PermissionsError(StorageP... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\exception.pyi | exception.pyi | Other | 4,569 | 0.85 | 0.503401 | 0 | react-lib | 26 | 2023-08-23T02:31:19.945545 | MIT | false | b88b06818c113c10865b778c7e44ede4 |
from typing import Any, Optional\n\nclass Plugin:\n capability: Any\n @classmethod\n def is_capable(cls, requested_capability): ...\n\ndef get_plugin(cls, requested_capability: Optional[Any] = ...): ...\ndef load_plugins(config): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\plugin.pyi | plugin.pyi | Other | 235 | 0.85 | 0.444444 | 0 | vue-tools | 118 | 2025-01-04T07:48:00.128503 | Apache-2.0 | false | 200211dcd02f7ca3bc5972cb0f49b8b7 |
from typing import Any, Optional\n\ndef load_endpoint_json(path): ...\ndef merge_endpoints(defaults, additions): ...\ndef load_regions(): ...\ndef get_regions(service_name, region_cls: Optional[Any] = ..., connection_cls: Optional[Any] = ...): ...\n\nclass RegionInfo:\n connection: Any\n name: Any\n endpoint: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\regioninfo.pyi | regioninfo.pyi | Other | 701 | 0.85 | 0.409091 | 0 | vue-tools | 331 | 2025-03-01T05:06:35.423231 | Apache-2.0 | false | 7a44f728a84d9e2ef9640135a5cc76e3 |
import datetime\nimport logging.handlers\nimport subprocess\nimport sys\nimport time\nfrom typing import (\n IO,\n Any,\n Callable,\n ContextManager,\n Dict,\n Iterable,\n List,\n Mapping,\n Optional,\n Sequence,\n Tuple,\n Type,\n TypeVar,\n Union,\n)\n\nimport boto.connection... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\utils.pyi | utils.pyi | Other | 5,876 | 0.95 | 0.274286 | 0.026846 | react-lib | 845 | 2025-04-25T00:58:07.286992 | Apache-2.0 | false | 8f5e35de934522a1d8f7aab0751fd767 |
import logging\nfrom typing import Any, Optional, Text\n\nfrom .s3.connection import S3Connection\n\nVersion: Any\nUserAgent: Any\nconfig: Any\nBUCKET_NAME_RE: Any\nTOO_LONG_DNS_NAME_COMP: Any\nGENERATION_RE: Any\nVERSION_RE: Any\nENDPOINTS_PATH: Any\n\ndef init_logging(): ...\n\nclass NullHandler(logging.Handler):\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\__init__.pyi | __init__.pyi | Other | 7,183 | 0.95 | 0.53211 | 0.029412 | python-kit | 539 | 2024-10-24T05:26:51.231499 | GPL-3.0 | false | 52c77f094dab831a44535119cebf6e68 |
from typing import Any\n\nRegionData: Any\n\ndef regions(**kw_params): ...\ndef connect_to_region(region_name, **kw_params): ...\ndef get_region(region_name, **kw_params): ...\n\n# Explicitly mark this package as incomplete.\ndef __getattr__(name: str) -> Any: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\ec2\__init__.pyi | __init__.pyi | Other | 256 | 0.95 | 0.4 | 0.142857 | awesome-app | 854 | 2024-11-05T08:44:06.667878 | BSD-3-Clause | false | 713fecc7c9a2dbc179e45f6df4e938be |
from typing import Any\n\nfrom boto.connection import AWSQueryConnection\n\nRegionData: Any\n\ndef regions(): ...\ndef connect_to_region(region_name, **kw_params): ...\n\nclass ELBConnection(AWSQueryConnection):\n APIVersion: Any\n DefaultRegionName: Any\n DefaultRegionEndpoint: Any\n region: Any\n def _... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\elb\__init__.pyi | __init__.pyi | Other | 2,629 | 0.85 | 0.491525 | 0 | react-lib | 999 | 2023-11-17T14:50:02.481907 | BSD-3-Clause | false | 811cdf6102ecb5e07713364e6e55e4d5 |
from boto.exception import BotoServerError\n\nclass InvalidGrantTokenException(BotoServerError): ...\nclass DisabledException(BotoServerError): ...\nclass LimitExceededException(BotoServerError): ...\nclass DependencyTimeoutException(BotoServerError): ...\nclass InvalidMarkerException(BotoServerError): ...\nclass Alrea... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\kms\exceptions.pyi | exceptions.pyi | Other | 829 | 0.85 | 0.882353 | 0 | vue-tools | 513 | 2025-02-16T17:39:57.927784 | BSD-3-Clause | false | 4607b90fbf4a38bb01cd91d2ac221ad1 |
from typing import Any, Dict, List, Mapping, Optional, Type\n\nfrom boto.connection import AWSQueryConnection\n\nclass KMSConnection(AWSQueryConnection):\n APIVersion: str\n DefaultRegionName: str\n DefaultRegionEndpoint: str\n ServiceName: str\n TargetPrefix: str\n ResponseError: Type[Exception]\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\kms\layer1.pyi | layer1.pyi | Other | 3,972 | 0.85 | 0.329268 | 0 | vue-tools | 365 | 2024-01-12T07:37:11.240319 | GPL-3.0 | false | eeec91acac96ea9f7a72eae496596744 |
from typing import List\n\nimport boto.regioninfo\n\ndef regions() -> List[boto.regioninfo.RegionInfo]: ...\ndef connect_to_region(region_name, **kw_params): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\kms\__init__.pyi | __init__.pyi | Other | 157 | 0.85 | 0.333333 | 0 | node-utils | 696 | 2024-06-05T10:12:42.563838 | Apache-2.0 | false | 408732d548a75be0b99a6cc99a939cab |
from typing import Any, Dict, List, Optional, Text, Union\n\nfrom .connection import S3Connection\nfrom .user import User\n\nCannedACLStrings: List[str]\n\nclass Policy:\n parent: Any\n namespace: Any\n acl: ACL\n def __init__(self, parent: Optional[Any] = ...) -> None: ...\n owner: User\n def startEl... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\acl.pyi | acl.pyi | Other | 1,686 | 0.85 | 0.375 | 0 | react-lib | 916 | 2024-06-22T23:54:41.396203 | BSD-3-Clause | false | df2b95cf963842dbd1bc044fba8ebaab |
from typing import Any, Dict, List, Optional, Text, Type\n\nfrom .bucketlistresultset import BucketListResultSet\nfrom .connection import S3Connection\nfrom .key import Key\n\nclass S3WebsiteEndpointTranslate:\n trans_region: Dict[str, str]\n @classmethod\n def translate_region(cls, reg: Text) -> str: ...\n\nS... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\bucket.pyi | bucket.pyi | Other | 8,747 | 0.85 | 0.395722 | 0 | vue-tools | 649 | 2025-07-01T03:25:14.084012 | BSD-3-Clause | false | 8dbc6ec71892feff665da687dc9f9c0c |
from typing import Any, Iterable, Iterator, Optional\n\nfrom .key import Key\n\ndef bucket_lister(\n bucket,\n prefix: str = ...,\n delimiter: str = ...,\n marker: str = ...,\n headers: Optional[Any] = ...,\n encoding_type: Optional[Any] = ...,\n): ...\n\nclass BucketListResultSet(Iterable[Key]):\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\bucketlistresultset.pyi | bucketlistresultset.pyi | Other | 2,029 | 0.85 | 0.15 | 0 | vue-tools | 324 | 2024-07-28T20:55:13.611026 | MIT | false | bee23b80e698a13c594c0aea77235b23 |
from typing import Any, Optional\n\nclass BucketLogging:\n target: Any\n prefix: Any\n grants: Any\n def __init__(self, target: Optional[Any] = ..., prefix: Optional[Any] = ..., grants: Optional[Any] = ...) -> None: ...\n def add_grant(self, grant): ...\n def startElement(self, name, attrs, connection... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\bucketlogging.pyi | bucketlogging.pyi | Other | 400 | 0.85 | 0.545455 | 0 | vue-tools | 45 | 2025-06-27T11:51:44.294726 | MIT | false | 7ca5b4defdf5f3240ae6e53f07c520b2 |
from typing import Any, Dict, Optional, Text, Type\n\nfrom boto.connection import AWSAuthConnection\nfrom boto.exception import BotoClientError\n\nfrom .bucket import Bucket\n\ndef check_lowercase_bucketname(n): ...\ndef assert_case_insensitive(f): ...\n\nclass _CallingFormat:\n def get_bucket_server(self, server, b... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\connection.pyi | connection.pyi | Other | 4,829 | 0.95 | 0.289063 | 0 | react-lib | 797 | 2024-04-26T18:20:24.410518 | GPL-3.0 | false | f60dd6586108993cc7f18cae7adc3e79 |
from typing import Any, List, Optional\n\nclass CORSRule:\n allowed_method: Any\n allowed_origin: Any\n id: Any\n allowed_header: Any\n max_age_seconds: Any\n expose_header: Any\n def __init__(\n self,\n allowed_method: Optional[Any] = ...,\n allowed_origin: Optional[Any] = ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\cors.pyi | cors.pyi | Other | 1,088 | 0.85 | 0.285714 | 0 | vue-tools | 951 | 2025-02-19T17:07:20.846221 | BSD-3-Clause | false | 1a1cef8eda5fdf4ae767ed4107f560ea |
from typing import Any, Optional\n\nclass DeleteMarker:\n bucket: Any\n name: Any\n version_id: Any\n is_latest: bool\n last_modified: Any\n owner: Any\n def __init__(self, bucket: Optional[Any] = ..., name: Optional[Any] = ...) -> None: ...\n def startElement(self, name, attrs, connection): ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\deletemarker.pyi | deletemarker.pyi | Other | 366 | 0.85 | 0.333333 | 0 | python-kit | 985 | 2024-05-30T14:23:27.539754 | BSD-3-Clause | false | 884149964f89a8035a229c108da0492f |
from typing import Any, Callable, Dict, Optional, Text, Union, overload\n\nclass Key:\n DefaultContentType: str\n RestoreBody: str\n BufferSize: Any\n base_user_settable_fields: Any\n base_fields: Any\n bucket: Any\n name: str\n metadata: Any\n cache_control: Any\n content_type: Any\n c... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\key.pyi | key.pyi | Other | 8,317 | 0.85 | 0.214592 | 0.00431 | node-utils | 993 | 2024-04-08T01:23:46.930709 | GPL-3.0 | false | 46802fa098cf585da83cba666bc22e9a |
from typing import Any\n\nclass KeyFile:\n key: Any\n location: int\n closed: bool\n softspace: int\n mode: str\n encoding: str\n errors: str\n newlines: str\n name: Any\n def __init__(self, key) -> None: ...\n def tell(self): ...\n def seek(self, pos, whence: Any = ...): ...\n de... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\keyfile.pyi | keyfile.pyi | Other | 684 | 0.85 | 0.62069 | 0 | vue-tools | 836 | 2025-06-16T21:15:06.196655 | GPL-3.0 | false | 5d2997d3291ad88082702ca131adc6f5 |
from typing import Any, List, Optional\n\nclass Rule:\n id: Any\n prefix: Any\n status: Any\n expiration: Any\n transition: Any\n def __init__(\n self,\n id: Optional[Any] = ...,\n prefix: Optional[Any] = ...,\n status: Optional[Any] = ...,\n expiration: Optional[Any... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\lifecycle.pyi | lifecycle.pyi | Other | 1,984 | 0.85 | 0.415385 | 0 | python-kit | 13 | 2025-04-09T04:06:11.281930 | Apache-2.0 | false | 264ed1ccb51f3816c76334cf1b47691e |
from typing import Any, Optional\n\nclass Deleted:\n key: Any\n version_id: Any\n delete_marker: Any\n delete_marker_version_id: Any\n def __init__(\n self,\n key: Optional[Any] = ...,\n version_id: Optional[Any] = ...,\n delete_marker: bool = ...,\n delete_marker_versi... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\multidelete.pyi | multidelete.pyi | Other | 1,075 | 0.85 | 0.342857 | 0 | node-utils | 818 | 2024-05-24T10:31:13.230689 | GPL-3.0 | false | 63f8afb96246e97cdcf67148d7b78e3d |
from typing import Any, Optional\n\nclass CompleteMultiPartUpload:\n bucket: Any\n location: Any\n bucket_name: Any\n key_name: Any\n etag: Any\n version_id: Any\n encrypted: Any\n def __init__(self, bucket: Optional[Any] = ...) -> None: ...\n def startElement(self, name, attrs, connection): ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\multipart.pyi | multipart.pyi | Other | 1,997 | 0.85 | 0.285714 | 0 | awesome-app | 705 | 2025-02-16T19:17:02.725886 | BSD-3-Clause | false | d2019bf88d6cdad3807bb21a91d2e518 |
from typing import Any, Optional\n\nclass Prefix:\n bucket: Any\n name: Any\n def __init__(self, bucket: Optional[Any] = ..., name: Optional[Any] = ...) -> None: ...\n def startElement(self, name, attrs, connection): ...\n def endElement(self, name, value, connection): ...\n @property\n def provide... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\prefix.pyi | prefix.pyi | Other | 324 | 0.85 | 0.5 | 0 | node-utils | 558 | 2025-01-01T16:31:51.308614 | MIT | false | 5b8a657309ab61446e50ba4872f4334e |
from typing import Any, List, Optional\n\nclass Tag:\n key: Any\n value: Any\n def __init__(self, key: Optional[Any] = ..., value: Optional[Any] = ...) -> None: ...\n def startElement(self, name, attrs, connection): ...\n def endElement(self, name, value, connection): ...\n def to_xml(self): ...\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\tagging.pyi | tagging.pyi | Other | 748 | 0.85 | 0.727273 | 0 | vue-tools | 442 | 2025-05-29T18:42:57.089527 | Apache-2.0 | false | 782269d6a9b9884c68cb25ddc1af8952 |
from typing import Any, Optional\n\nclass User:\n type: Any\n id: Any\n display_name: Any\n def __init__(self, parent: Optional[Any] = ..., id: str = ..., display_name: str = ...) -> None: ...\n def startElement(self, name, attrs, connection): ...\n def endElement(self, name, value, connection): ...\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\user.pyi | user.pyi | Other | 362 | 0.85 | 0.5 | 0 | python-kit | 995 | 2024-09-17T08:00:33.578480 | MIT | false | 5a18e2c78514784979d5c6b3e0596a42 |
from typing import Any, List, Optional\n\ndef tag(key, value): ...\n\nclass WebsiteConfiguration:\n suffix: Any\n error_key: Any\n redirect_all_requests_to: Any\n routing_rules: Any\n def __init__(\n self,\n suffix: Optional[Any] = ...,\n error_key: Optional[Any] = ...,\n redi... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\website.pyi | website.pyi | Other | 2,649 | 0.85 | 0.390244 | 0 | python-kit | 312 | 2024-11-19T03:48:28.002232 | BSD-3-Clause | false | d0d096a3ef046db526ef3125a3712df8 |
from typing import List, Optional, Text, Type\n\nfrom boto.connection import AWSAuthConnection\nfrom boto.regioninfo import RegionInfo\n\nfrom .connection import S3Connection\n\nclass S3RegionInfo(RegionInfo):\n def connect(\n self,\n name: Optional[Text] = ...,\n endpoint: Optional[str] = ...,\... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\boto\s3\__init__.pyi | __init__.pyi | Other | 523 | 0.85 | 0.222222 | 0.071429 | react-lib | 145 | 2023-12-04T10:42:32.827544 | GPL-3.0 | false | d87021973cd10025675124a55007d506 |
from abc import ABCMeta\nfrom typing import MutableMapping, TypeVar\n\n_KT = TypeVar("_KT")\n_VT = TypeVar("_VT")\n\nclass DefaultMapping(MutableMapping[_KT, _VT], metaclass=ABCMeta): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cachetools\abc.pyi | abc.pyi | Other | 182 | 0.85 | 0.142857 | 0 | node-utils | 270 | 2024-02-03T04:51:12.095158 | GPL-3.0 | false | 00b35727d0dc4a7eeea9e470d7cc4ff2 |
from typing import Callable, Generic, Iterator, Optional, TypeVar\n\nfrom .abc import DefaultMapping as DefaultMapping\n\n_KT = TypeVar("_KT")\n_VT = TypeVar("_VT")\n\nclass Cache(DefaultMapping[_KT, _VT], Generic[_KT, _VT]):\n def __init__(self, maxsize: int, getsizeof: Optional[Callable[[_VT], int]] = ...) -> None... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cachetools\cache.pyi | cache.pyi | Other | 712 | 0.85 | 0.5 | 0 | python-kit | 184 | 2024-07-30T04:45:05.302238 | MIT | false | 0b71462b155d80cb793ffe78e8c71a5f |
from typing import Any, Callable, ContextManager, MutableMapping, Optional, TypeVar\n\n_KT = TypeVar("_KT")\n_VT = TypeVar("_VT")\n_T = TypeVar("_T", bound=Callable[..., Any])\n_T_co = TypeVar("_T_co", covariant=True)\n_T_self = TypeVar("_T_self")\n\ndef cached(\n cache: Optional[MutableMapping[_KT, _VT]], key: Call... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cachetools\decorators.pyi | decorators.pyi | Other | 605 | 0.85 | 0.125 | 0 | node-utils | 870 | 2024-06-21T00:56:38.608355 | MIT | false | 0ed01e7cce9c8b1ebf3a915e746a77cf |
from typing import Any, Callable, Optional, Sequence, TypeVar\n\n_T = TypeVar("_T")\n\n_F = TypeVar("_F", bound=Callable[..., Any])\n_RET = Callable[[_F], _F]\n\ndef lfu_cache(maxsize: int = ..., typed: bool = ...) -> _RET: ...\ndef lru_cache(maxsize: int = ..., typed: bool = ...) -> _RET: ...\ndef rr_cache(maxsize: in... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cachetools\func.pyi | func.pyi | Other | 510 | 0.85 | 0.363636 | 0 | vue-tools | 320 | 2023-12-06T08:03:09.536375 | BSD-3-Clause | false | fc34189be1eaf5d7d92dc5cad574fa28 |
from typing import Callable, Iterator, Optional, TypeVar\n\nfrom .cache import Cache\n\n_KT = TypeVar("_KT")\n_VT = TypeVar("_VT")\n\nclass LFUCache(Cache[_KT, _VT]):\n def __init__(self, maxsize: int, getsizeof: Optional[Callable[[_VT], int]] = ...) -> None: ...\n def __getitem__(self, key: _KT, cache_getitem: C... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cachetools\lfu.pyi | lfu.pyi | Other | 632 | 0.85 | 0.5 | 0 | react-lib | 428 | 2023-12-07T14:14:03.828654 | BSD-3-Clause | false | 2d3f11f42798d886cf697aeeda44d50e |
from typing import Callable, Iterator, Optional, TypeVar\n\nfrom .cache import Cache as Cache\n\n_KT = TypeVar("_KT")\n_VT = TypeVar("_VT")\n\nclass LRUCache(Cache[_KT, _VT]):\n def __init__(self, maxsize: int, getsizeof: Optional[Callable[[_VT], int]] = ...) -> None: ...\n def __getitem__(self, key: _KT, cache_g... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cachetools\lru.pyi | lru.pyi | Other | 607 | 0.85 | 0.461538 | 0 | python-kit | 41 | 2025-06-24T05:09:52.172824 | MIT | false | af7dbeecb5e856f98a8075e656a0210a |
from typing import Callable, Iterator, Optional, Sequence, TypeVar\n\nfrom .cache import Cache as Cache\n\n_KT = TypeVar("_KT")\n_VT = TypeVar("_VT")\n\nclass RRCache(Cache[_KT, _VT]):\n def __init__(\n self,\n maxsize: int,\n choice: Optional[Callable[[Sequence[_KT]], _KT]] = ...,\n gets... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cachetools\rr.pyi | rr.pyi | Other | 683 | 0.85 | 0.380952 | 0 | vue-tools | 78 | 2024-12-05T13:39:41.669534 | BSD-3-Clause | false | 90e08cf677fae7179f53806b214d851c |
from typing import Callable, Iterator, Optional, TypeVar\n\nfrom .cache import Cache\n\n_KT = TypeVar("_KT")\n_VT = TypeVar("_VT")\n\nclass TTLCache(Cache[_KT, _VT]):\n def __init__(\n self, maxsize: int, ttl: float, timer: Callable[[], float] = ..., getsizeof: Optional[Callable[[_VT], int]] = ...\n ) -> N... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cachetools\ttl.pyi | ttl.pyi | Other | 926 | 0.85 | 0.478261 | 0 | python-kit | 92 | 2025-03-29T07:46:15.814015 | BSD-3-Clause | false | 727f9d147518f286917ca5aeebbe0517 |
from .cache import Cache as Cache\nfrom .decorators import cached as cached, cachedmethod as cachedmethod\nfrom .lfu import LFUCache as LFUCache\nfrom .lru import LRUCache as LRUCache\nfrom .rr import RRCache as RRCache\nfrom .ttl import TTLCache as TTLCache\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cachetools\__init__.pyi | __init__.pyi | Other | 254 | 0.85 | 0 | 0 | node-utils | 751 | 2024-08-15T11:17:25.685949 | BSD-3-Clause | false | 0a75946a7cb2d24c3dc8c98a8236dc3f |
from typing import Any, AnyStr, Callable, Dict, Optional, Sequence, Type, TypeVar, Union\n\ndef with_repr(attrs: Sequence[Union[AnyStr, Attribute]]) -> Callable[..., Any]: ...\ndef with_cmp(attrs: Sequence[Union[AnyStr, Attribute]]) -> Callable[..., Any]: ...\ndef with_init(attrs: Sequence[Union[AnyStr, Attribute]]) ->... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\characteristic\__init__.pyi | __init__.pyi | Other | 1,330 | 0.85 | 0.228571 | 0.033333 | awesome-app | 728 | 2025-04-22T13:54:08.177616 | Apache-2.0 | false | 1815801fbb3bb1e26508bdd1f7e0b059 |
class InputState(object):\n PURE_ASCII: int\n ESC_ASCII: int\n HIGH_BYTE: int\n\nclass LanguageFilter(object):\n CHINESE_SIMPLIFIED: int\n CHINESE_TRADITIONAL: int\n JAPANESE: int\n KOREAN: int\n NON_CJK: int\n ALL: int\n CHINESE: int\n CJK: int\n\nclass ProbingState(object):\n DETEC... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\enums.pyi | enums.pyi | Other | 710 | 0.85 | 0.179487 | 0 | awesome-app | 131 | 2023-10-07T18:09:08.675322 | GPL-3.0 | false | 9ee402693ad37875b9ef1b1ba8455bc5 |
from typing import Tuple\n\nfrom . import _LangModelType\n\nLatin5_BulgarianCharToOrderMap: Tuple[int, ...]\nwin1251BulgarianCharToOrderMap: Tuple[int, ...]\nBulgarianLangModel: Tuple[int, ...]\nLatin5BulgarianModel: _LangModelType\nWin1251BulgarianModel: _LangModelType\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\langbulgarianmodel.pyi | langbulgarianmodel.pyi | Other | 263 | 0.85 | 0 | 0 | react-lib | 517 | 2024-04-04T20:51:27.563916 | Apache-2.0 | false | 8bc98df107a5df52057c723446fee95a |
from typing import Tuple\n\nfrom . import _LangModelType\n\nKOI8R_char_to_order_map: Tuple[int, ...]\nwin1251_char_to_order_map: Tuple[int, ...]\nlatin5_char_to_order_map: Tuple[int, ...]\nmacCyrillic_char_to_order_map: Tuple[int, ...]\nIBM855_char_to_order_map: Tuple[int, ...]\nIBM866_char_to_order_map: Tuple[int, ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\langcyrillicmodel.pyi | langcyrillicmodel.pyi | Other | 536 | 0.85 | 0 | 0 | vue-tools | 771 | 2023-12-08T20:57:35.611529 | GPL-3.0 | false | d8102dfd7f5807c5926083e2aff0ae2e |
from typing import Tuple\n\nfrom . import _LangModelType\n\nLatin7_char_to_order_map: Tuple[int, ...]\nwin1253_char_to_order_map: Tuple[int, ...]\nGreekLangModel: Tuple[int, ...]\nLatin7GreekModel: _LangModelType\nWin1253GreekModel: _LangModelType\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\langgreekmodel.pyi | langgreekmodel.pyi | Other | 240 | 0.85 | 0 | 0 | python-kit | 38 | 2023-12-29T09:34:06.613649 | BSD-3-Clause | false | 12446f4beecd4c11955ff5c7bd0b827f |
from typing import Tuple\n\nfrom . import _LangModelType\n\nWIN1255_CHAR_TO_ORDER_MAP: Tuple[int, ...]\nHEBREW_LANG_MODEL: Tuple[int, ...]\nWin1255HebrewModel: _LangModelType\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\langhebrewmodel.pyi | langhebrewmodel.pyi | Other | 169 | 0.85 | 0 | 0 | python-kit | 886 | 2024-01-30T01:35:52.218241 | GPL-3.0 | false | 274c85866d7228e47a5ce230afe63525 |
from typing import Tuple\n\nfrom . import _LangModelType\n\nLatin2_HungarianCharToOrderMap: Tuple[int, ...]\nwin1250HungarianCharToOrderMap: Tuple[int, ...]\nHungarianLangModel: Tuple[int, ...]\nLatin2HungarianModel: _LangModelType\nWin1250HungarianModel: _LangModelType\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\langhungarianmodel.pyi | langhungarianmodel.pyi | Other | 263 | 0.85 | 0 | 0 | python-kit | 821 | 2025-01-05T09:33:27.441006 | MIT | false | 4c63f002bb7dce2b068bc4eb321a4e4b |
from typing import Tuple\n\nfrom . import _LangModelType\n\nTIS620CharToOrderMap: Tuple[int, ...]\nThaiLangModel: Tuple[int, ...]\nTIS620ThaiModel: _LangModelType\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\langthaimodel.pyi | langthaimodel.pyi | Other | 157 | 0.85 | 0 | 0 | react-lib | 217 | 2023-10-09T18:38:03.479962 | MIT | false | 705ee166ac3ae07f532c6f8d57ee0f51 |
from typing import Tuple\n\nfrom . import _LangModelType\n\nLatin5_TurkishCharToOrderMap: Tuple[int, ...]\nTurkishLangModel: Tuple[int, ...]\nLatin5TurkishModel: _LangModelType\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\langturkishmodel.pyi | langturkishmodel.pyi | Other | 171 | 0.85 | 0 | 0 | react-lib | 986 | 2024-11-20T07:27:41.697956 | BSD-3-Clause | false | 6fe3148039ee7d8637e0a01f8d460999 |
from logging import Logger\nfrom typing import Dict, Optional, Pattern\nfrom typing_extensions import TypedDict\n\nclass _FinalResultType(TypedDict):\n encoding: str\n confidence: float\n language: str\n\nclass _IntermediateResultType(TypedDict):\n encoding: Optional[str]\n confidence: float\n languag... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\universaldetector.pyi | universaldetector.pyi | Other | 809 | 0.85 | 0.241379 | 0 | python-kit | 570 | 2024-04-08T14:29:18.677361 | GPL-3.0 | false | e909f82a402e8d7694ba1d8a7ec83f35 |
from typing import List\n\n__version__: str\nVERSION: List[str]\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\version.pyi | version.pyi | Other | 61 | 0.65 | 0 | 0 | python-kit | 936 | 2024-11-20T02:52:01.587655 | Apache-2.0 | false | 445ad5bdbeafb14afbe0fc2273dc5fa5 |
import sys\nfrom typing import Any, Tuple\n\nfrom .universaldetector import UniversalDetector as UniversalDetector\n\ndef __getattr__(name: str) -> Any: ... # incomplete\n\nif sys.version_info >= (3, 8):\n from typing import TypedDict\nelse:\n from typing_extensions import TypedDict\n\nclass _LangModelType(Typed... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\chardet\__init__.pyi | __init__.pyi | Other | 667 | 0.95 | 0.153846 | 0 | awesome-app | 640 | 2024-08-25T07:48:00.893945 | MIT | false | 3f084aee5eb9503d83f228e262864fdf |
from typing import (\n Any,\n Callable,\n ContextManager,\n Dict,\n Iterable,\n List,\n Mapping,\n NoReturn,\n Optional,\n Sequence,\n Set,\n Tuple,\n TypeVar,\n Union,\n)\n\nfrom click.formatting import HelpFormatter\nfrom click.parser import OptionParser\n\n_CC = TypeVar("_CC... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\core.pyi | core.pyi | Other | 11,012 | 0.95 | 0.308772 | 0.014815 | python-kit | 858 | 2024-05-17T10:49:43.171489 | MIT | false | ebe8e22fc4195a8b4896b8907455aec6 |
from distutils.version import Version\nfrom typing import Any, Callable, Dict, List, Optional, Protocol, Text, Tuple, Type, TypeVar, Union, overload\n\nfrom click.core import Argument, Command, Context, Group, Option, Parameter, _ConvertibleType\n\n_T = TypeVar("_T")\n_F = TypeVar("_F", bound=Callable[..., Any])\n\ncla... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\decorators.pyi | decorators.pyi | Other | 9,143 | 0.95 | 0.054608 | 0.15493 | python-kit | 422 | 2023-11-12T00:19:56.084381 | Apache-2.0 | false | b05c0ef4975a742446662165a170fbf5 |
from typing import IO, Any, List, Optional\n\nfrom click.core import Context, Parameter\n\nclass ClickException(Exception):\n exit_code: int\n message: str\n def __init__(self, message: str) -> None: ...\n def format_message(self) -> str: ...\n def show(self, file: Optional[Any] = ...) -> None: ...\n\ncl... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\exceptions.pyi | exceptions.pyi | Other | 1,936 | 0.95 | 0.366667 | 0 | react-lib | 775 | 2024-01-08T06:52:37.870022 | MIT | false | 3a0377a199411f85ccd8950d0fab5ad0 |
from typing import ContextManager, Generator, Iterable, List, Optional, Tuple\n\nFORCED_WIDTH: Optional[int]\n\ndef measure_table(rows: Iterable[Iterable[str]]) -> Tuple[int, ...]: ...\ndef iter_rows(rows: Iterable[Iterable[str]], col_count: int) -> Generator[Tuple[str, ...], None, None]: ...\ndef wrap_text(\n text:... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\formatting.pyi | formatting.pyi | Other | 1,383 | 0.85 | 0.5 | 0 | vue-tools | 654 | 2024-04-16T17:06:10.378030 | Apache-2.0 | false | ad1f55dbfaf90f605974da2fc3ecfbc2 |
from typing import Optional\n\nfrom click.core import Context\n\ndef get_current_context(silent: bool = ...) -> Context: ...\ndef push_context(ctx: Context) -> None: ...\ndef pop_context() -> None: ...\ndef resolve_color_default(color: Optional[bool] = ...) -> Optional[bool]: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\globals.pyi | globals.pyi | Other | 274 | 0.85 | 0.5 | 0 | python-kit | 693 | 2025-04-07T21:33:56.248059 | Apache-2.0 | false | e646e67a70d4cd6ba464baeb4d529377 |
from typing import Any, Dict, Iterable, List, Optional, Set, Tuple\n\nfrom click.core import Context\n\ndef _unpack_args(args: Iterable[str], nargs_spec: Iterable[int]) -> Tuple[Tuple[Optional[Tuple[str, ...]], ...], List[str]]: ...\ndef split_opt(opt: str) -> Tuple[str, str]: ...\ndef normalize_opt(opt: str, ctx: Cont... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\parser.pyi | parser.pyi | Other | 2,006 | 0.85 | 0.276923 | 0 | react-lib | 173 | 2023-12-26T13:50:13.217719 | MIT | false | e4f06377b7e7ddec1a74abfd8409a082 |
from typing import IO, Any, Callable, Generator, Iterable, Optional, Text, Tuple, TypeVar, Union, overload\n\nfrom click._termui_impl import ProgressBar as _ProgressBar\nfrom click.core import _ConvertibleType\n\ndef hidden_prompt_func(prompt: str) -> str: ...\ndef _build_prompt(text: str, suffix: str, show_default: bo... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\termui.pyi | termui.pyi | Other | 3,291 | 0.95 | 0.165049 | 0.010101 | awesome-app | 971 | 2024-10-13T07:41:20.327688 | BSD-3-Clause | false | 9f4d8165146f304be49abf08d2156a1d |
from typing import IO, Any, BinaryIO, ContextManager, Dict, Iterable, List, Mapping, Optional, Text, Union\n\nfrom .core import BaseCommand\n\nclickpkg: Any\n\nclass EchoingStdin:\n def __init__(self, input: BinaryIO, output: BinaryIO) -> None: ...\n def __getattr__(self, x: str) -> Any: ...\n def read(self, n... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\testing.pyi | testing.pyi | Other | 2,136 | 0.85 | 0.298507 | 0.016393 | python-kit | 823 | 2024-11-03T09:04:42.635012 | MIT | true | df3148aa112d81f0c68db408b34ec798 |
import datetime\nimport uuid\nfrom typing import IO, Any, Callable, Generic, Iterable, List, Optional, Sequence, Text, Tuple as _PyTuple, Type, TypeVar, Union\n\nfrom click.core import Context, Parameter, _ConvertibleType, _ParamType\n\nParamType = _ParamType\n\nclass BoolParamType(ParamType):\n def __call__(self, v... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\types.pyi | types.pyi | Other | 5,045 | 0.95 | 0.368 | 0.009709 | vue-tools | 71 | 2024-12-24T00:44:53.250870 | MIT | false | fc0f8c26ec34d8594b8fc09555af55f4 |
from typing import IO, Any, AnyStr, Generic, Iterator, List, Optional, Text, TypeVar\n\n_T = TypeVar("_T")\n\ndef _posixify(name: str) -> str: ...\ndef safecall(func: _T) -> _T: ...\ndef make_str(value: Any) -> str: ...\ndef make_default_short_help(help: str, max_length: int = ...): ...\n\nclass LazyFile(object):\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\utils.pyi | utils.pyi | Other | 1,752 | 0.95 | 0.55814 | 0 | node-utils | 127 | 2023-12-10T03:38:57.554567 | BSD-3-Clause | false | 8a20d51ae35eb9b5a7c451fdb6a0a087 |
from typing import Generic, Optional, TypeVar\n\n_T = TypeVar("_T")\n\nclass ProgressBar(Generic[_T]):\n def update(self, n_steps: int) -> None: ...\n def finish(self) -> None: ...\n def __enter__(self) -> ProgressBar[_T]: ...\n def __exit__(self, exc_type, exc_value, tb) -> None: ...\n def __iter__(self... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\_termui_impl.pyi | _termui_impl.pyi | Other | 442 | 0.85 | 0.571429 | 0 | node-utils | 852 | 2024-06-19T12:00:34.511520 | MIT | false | f122c702666ca158e612d24a45b303a9 |
from .core import (\n Argument as Argument,\n BaseCommand as BaseCommand,\n Command as Command,\n CommandCollection as CommandCollection,\n Context as Context,\n Group as Group,\n MultiCommand as MultiCommand,\n Option as Option,\n Parameter as Parameter,\n)\nfrom .decorators import (\n ar... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\click\__init__.pyi | __init__.pyi | Other | 2,273 | 0.95 | 0.011905 | 0.02439 | react-lib | 60 | 2023-08-02T03:21:15.522699 | BSD-3-Clause | false | 10f98201493ac8c6ceb43a69781a98a7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.