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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
class AlreadyFinalized(Exception): ...\nclass AlreadyUpdated(Exception): ...\nclass InvalidKey(Exception): ...\nclass InvalidSignature(Exception): ...\nclass InvalidTag(Exception): ...\nclass NotYetFinalized(Exception): ...\nclass UnsupportedAlgorithm(Exception): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\exceptions.pyi | exceptions.pyi | Other | 262 | 0.85 | 1 | 0 | python-kit | 297 | 2023-10-16T04:43:49.275978 | MIT | false | 866792dc8f3657a15852e9a0f211b785 |
from typing import List, Optional, Text, Union\n\nclass InvalidToken(Exception): ...\n\nclass Fernet(object):\n def __init__(self, key: Union[bytes, Text]) -> None: ...\n def decrypt(self, token: bytes, ttl: Optional[int] = ...) -> bytes: ...\n # decrypt_at_time accepts None ttl at runtime but it's an implemen... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\fernet.pyi | fernet.pyi | Other | 1,282 | 0.95 | 0.68 | 0.181818 | react-lib | 592 | 2025-07-05T10:27:54.426894 | GPL-3.0 | false | 97c33f15d98bc454067b5279bb2fefe2 |
from typing import Any\n\ndef __getattr__(name: str) -> Any: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\__init__.pyi | __init__.pyi | Other | 63 | 0.65 | 0.333333 | 0 | python-kit | 373 | 2023-07-11T02:57:31.610039 | BSD-3-Clause | false | 84a27291937d76e46b277653002601f2 |
from abc import ABCMeta, abstractmethod\nfrom typing import Any, Optional, Union\n\nfrom cryptography.hazmat.primitives.asymmetric.dh import (\n DHParameterNumbers,\n DHParameters,\n DHPrivateKey,\n DHPrivateNumbers,\n DHPublicKey,\n DHPublicNumbers,\n)\nfrom cryptography.hazmat.primitives.asymmetric.... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\backends\interfaces.pyi | interfaces.pyi | Other | 8,238 | 0.85 | 0.341837 | 0 | awesome-app | 834 | 2024-12-25T17:38:35.848794 | MIT | false | 12a190c013b5e1e8fa72a0a68a170cc3 |
from typing import Any\n\ndef default_backend() -> Any: ...\n\n# TODO: add some backends\ndef __getattr__(name: str) -> Any: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\backends\__init__.pyi | __init__.pyi | Other | 124 | 0.95 | 0.333333 | 0.25 | react-lib | 50 | 2024-10-05T23:33:35.775225 | MIT | false | 47a2dc0ef37b2d81c371082272e4ce7c |
from typing import Any, Optional\n\nclass Binding(object):\n ffi: Optional[Any]\n lib: Optional[Any]\n def init_static_locks(self) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\bindings\openssl\binding.pyi | binding.pyi | Other | 148 | 0.85 | 0.333333 | 0 | python-kit | 452 | 2024-04-22T08:53:29.952811 | BSD-3-Clause | false | c012683d2a7497efdf34fed23f3e9f5d |
from typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import CMACBackend\nfrom cryptography.hazmat.primitives.ciphers import BlockCipherAlgorithm\n\nclass CMAC(object):\n def __init__(self, algorithm: BlockCipherAlgorithm, backend: Optional[CMACBackend] = ...) -> None: ...\n def copy(self) -... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\cmac.pyi | cmac.pyi | Other | 461 | 0.85 | 0.545455 | 0 | vue-tools | 276 | 2023-11-21T07:44:35.459647 | GPL-3.0 | false | 6def99f318ed95dda3992d42574b75af |
def bytes_eq(a: bytes, b: bytes) -> bool: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\constant_time.pyi | constant_time.pyi | Other | 46 | 0.65 | 1 | 0 | awesome-app | 902 | 2023-10-21T15:28:04.508697 | MIT | false | dea56ac8f2ab7b75f5e3f2eb4facc990 |
from abc import ABCMeta, abstractmethod\nfrom typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import HashBackend\n\nclass HashAlgorithm(metaclass=ABCMeta):\n digest_size: int\n name: str\n\nclass HashContext(metaclass=ABCMeta):\n algorithm: HashAlgorithm\n @abstractmethod\n def cop... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\hashes.pyi | hashes.pyi | Other | 1,342 | 0.85 | 0.636364 | 0 | python-kit | 745 | 2023-08-17T19:45:53.390419 | Apache-2.0 | false | 1161c363ad02fa8ee0859cc748144fcf |
from typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import HMACBackend\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\n\nclass HMAC(object):\n def __init__(self, key: bytes, algorithm: HashAlgorithm, backend: Optional[HMACBackend] = ...) -> None: ...\n def copy(self) -> H... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\hmac.pyi | hmac.pyi | Other | 457 | 0.85 | 0.545455 | 0 | vue-tools | 33 | 2024-03-26T15:26:28.027100 | Apache-2.0 | false | 1763f99ee9003645cbdb1ad2725cc7c2 |
from typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import CipherBackend\n\ndef aes_key_wrap(wrapping_key: bytes, key_to_wrap: bytes, backend: Optional[CipherBackend] = ...) -> bytes: ...\ndef aes_key_wrap_with_padding(wrapping_key: bytes, key_to_wrap: bytes, backend: Optional[CipherBackend] = .... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\keywrap.pyi | keywrap.pyi | Other | 611 | 0.85 | 0.5 | 0 | python-kit | 858 | 2024-07-23T21:15:05.494025 | MIT | false | e5bd9d4b686292a6f9014ea15a585714 |
from abc import ABCMeta, abstractmethod\n\nclass PaddingContext(metaclass=ABCMeta):\n @abstractmethod\n def finalize(self) -> bytes: ...\n @abstractmethod\n def update(self, data: bytes) -> bytes: ...\n\nclass ANSIX923(object):\n def __init__(self, block_size: int) -> None: ...\n def padder(self) -> P... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\padding.pyi | padding.pyi | Other | 540 | 0.85 | 0.647059 | 0 | node-utils | 13 | 2023-09-10T13:46:34.964893 | MIT | false | 0d14e3ea6ebe8c6b9840b716a3224192 |
class Poly1305(object):\n def __init__(self, key: bytes) -> None: ...\n def finalize(self) -> bytes: ...\n @classmethod\n def generate_tag(cls, key: bytes, data: bytes) -> bytes: ...\n def update(self, data: bytes) -> None: ...\n def verify(self, tag: bytes) -> None: ...\n @classmethod\n def ver... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\poly1305.pyi | poly1305.pyi | Other | 375 | 0.85 | 0.777778 | 0 | python-kit | 218 | 2023-12-05T12:33:55.841884 | MIT | false | 34b2824ce722a436cf8d55e061e6a652 |
from typing import Any\n\ndef __getattr__(name: str) -> Any: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\__init__.pyi | __init__.pyi | Other | 63 | 0.65 | 0.333333 | 0 | vue-tools | 346 | 2023-09-22T05:21:32.970104 | GPL-3.0 | false | 84a27291937d76e46b277653002601f2 |
from abc import ABCMeta, abstractmethod\nfrom typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import DHBackend\nfrom cryptography.hazmat.primitives.serialization import (\n Encoding,\n KeySerializationEncryption,\n ParameterFormat,\n PrivateFormat,\n PublicFormat,\n)\n\nclass DHPar... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\dh.pyi | dh.pyi | Other | 2,651 | 0.85 | 0.417722 | 0 | awesome-app | 282 | 2024-07-25T17:08:32.885108 | MIT | false | 360f8a665d63bd267a48fd2fc748de0c |
from abc import ABCMeta, abstractmethod\nfrom typing import Optional, Union\n\nfrom cryptography.hazmat.backends.interfaces import DSABackend\nfrom cryptography.hazmat.primitives.asymmetric import AsymmetricVerificationContext\nfrom cryptography.hazmat.primitives.asymmetric.utils import Prehashed\nfrom cryptography.haz... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\dsa.pyi | dsa.pyi | Other | 2,965 | 0.85 | 0.43038 | 0 | vue-tools | 75 | 2024-07-05T12:51:44.702782 | MIT | false | 9d4a8adf22366094518389c88c9c73eb |
from abc import ABCMeta, abstractmethod\nfrom typing import ClassVar, Optional, Union\n\nfrom cryptography.hazmat.backends.interfaces import EllipticCurveBackend\nfrom cryptography.hazmat.primitives.asymmetric import AsymmetricVerificationContext\nfrom cryptography.hazmat.primitives.asymmetric.utils import Prehashed\nf... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\ec.pyi | ec.pyi | Other | 6,340 | 0.85 | 0.311224 | 0 | awesome-app | 759 | 2024-08-18T23:03:21.658170 | GPL-3.0 | false | d651f6e1b02e37f247671bb68235cbbc |
from abc import ABCMeta, abstractmethod\n\nfrom cryptography.hazmat.primitives.serialization import Encoding, KeySerializationEncryption, PrivateFormat, PublicFormat\n\nclass Ed25519PrivateKey(metaclass=ABCMeta):\n @classmethod\n def generate(cls) -> Ed25519PrivateKey: ...\n @classmethod\n def from_private_... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\ed25519.pyi | ed25519.pyi | Other | 985 | 0.85 | 0.4 | 0 | python-kit | 626 | 2024-08-07T05:01:36.284519 | BSD-3-Clause | false | c8cdd25965ab010c5e965055397780c7 |
from abc import ABCMeta, abstractmethod\n\nfrom cryptography.hazmat.primitives.serialization import Encoding, KeySerializationEncryption, PrivateFormat, PublicFormat\n\nclass Ed448PrivateKey(metaclass=ABCMeta):\n @classmethod\n def generate(cls) -> Ed448PrivateKey: ...\n @classmethod\n def from_private_byte... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\ed448.pyi | ed448.pyi | Other | 973 | 0.85 | 0.4 | 0 | awesome-app | 392 | 2024-08-17T14:38:58.438251 | BSD-3-Clause | false | 633a6ca7545b5a396a31e144986ddf93 |
from abc import ABCMeta, abstractmethod\nfrom typing import ClassVar, Optional, Union\n\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\n\nclass AsymmetricPadding(metaclass=ABCMeta):\n @property\n @abstractmethod\n def name(self) -> str: ...\n\nclass MGF1(object):\n def __init__(self, algor... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\padding.pyi | padding.pyi | Other | 787 | 0.85 | 0.444444 | 0 | awesome-app | 546 | 2024-05-24T18:14:40.894734 | MIT | false | 6f0e9f83b4247f426cf59612c4fd7a34 |
from abc import ABCMeta, abstractmethod\nfrom typing import Optional, Tuple, Union\n\nfrom cryptography.hazmat.backends.interfaces import RSABackend\nfrom cryptography.hazmat.primitives.asymmetric import AsymmetricVerificationContext\nfrom cryptography.hazmat.primitives.asymmetric.padding import AsymmetricPadding\nfrom... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\rsa.pyi | rsa.pyi | Other | 3,288 | 0.85 | 0.421687 | 0 | vue-tools | 87 | 2024-11-30T15:01:00.037937 | MIT | false | 085bd53a02fce095130f6b181d3d94a1 |
from typing import Tuple\n\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\n\ndef decode_dss_signature(signature: bytes) -> Tuple[int, int]: ...\ndef encode_dss_signature(r: int, s: int) -> bytes: ...\n\nclass Prehashed(object):\n _algorithm: HashAlgorithm # undocumented\n _digest_size: int # u... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\utils.pyi | utils.pyi | Other | 406 | 0.95 | 0.333333 | 0 | react-lib | 208 | 2024-12-22T15:00:27.259504 | MIT | false | 2e1ea93bb56e47b2036137f229807878 |
from abc import ABCMeta, abstractmethod\n\nfrom cryptography.hazmat.primitives.serialization import Encoding, KeySerializationEncryption, PrivateFormat, PublicFormat\n\nclass X25519PrivateKey(metaclass=ABCMeta):\n @classmethod\n def from_private_bytes(cls, data: bytes) -> X25519PrivateKey: ...\n @classmethod\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\x25519.pyi | x25519.pyi | Other | 919 | 0.85 | 0.391304 | 0 | vue-tools | 148 | 2024-08-16T01:30:27.758581 | Apache-2.0 | false | 09335b4ce4858db76eac11fdfe405d6e |
from abc import ABCMeta, abstractmethod\n\nfrom cryptography.hazmat.primitives.serialization import Encoding, KeySerializationEncryption, PrivateFormat, PublicFormat\n\nclass X448PrivateKey(metaclass=ABCMeta):\n @classmethod\n def from_private_bytes(cls, data: bytes) -> X448PrivateKey: ...\n @classmethod\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\x448.pyi | x448.pyi | Other | 905 | 0.85 | 0.391304 | 0 | node-utils | 1 | 2024-03-19T07:03:36.527606 | Apache-2.0 | false | 2f5ea4d264ab94d98039bba6251324b1 |
from typing import Any\n\ndef __getattr__(name: str) -> Any: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\asymmetric\__init__.pyi | __init__.pyi | Other | 63 | 0.65 | 0.333333 | 0 | react-lib | 317 | 2024-09-08T21:17:29.767747 | MIT | false | 84a27291937d76e46b277653002601f2 |
from typing import Optional\n\nclass AESCCM(object):\n def __init__(self, key: bytes, tag_length: Optional[int]) -> None: ...\n def decrypt(self, nonce: bytes, data: bytes, associated_data: Optional[bytes]) -> bytes: ...\n def encrypt(self, nonce: bytes, data: bytes, associated_data: Optional[bytes]) -> bytes:... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\ciphers\aead.pyi | aead.pyi | Other | 1,065 | 0.85 | 0.681818 | 0 | awesome-app | 268 | 2024-05-23T14:34:20.484390 | GPL-3.0 | false | abe5d2f46d8ff73735ccfac1d832e622 |
from typing import FrozenSet\n\nfrom cryptography.hazmat.primitives.ciphers import BlockCipherAlgorithm, CipherAlgorithm\nfrom cryptography.hazmat.primitives.ciphers.modes import ModeWithNonce\n\nclass AES(BlockCipherAlgorithm, CipherAlgorithm):\n def __init__(self, key: bytes) -> None: ...\n block_size: int = ..... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\ciphers\algorithms.pyi | algorithms.pyi | Other | 2,245 | 0.85 | 0.368421 | 0 | awesome-app | 938 | 2024-05-10T16:46:10.187728 | GPL-3.0 | false | 3de61ad57d85e5a5edcc4dfae7ffc549 |
from abc import ABCMeta, abstractmethod\nfrom typing import Optional\n\nfrom cryptography.hazmat.primitives.ciphers import CipherAlgorithm\n\nclass Mode(metaclass=ABCMeta):\n @property\n @abstractmethod\n def name(self) -> str: ...\n @abstractmethod\n def validate_for_algorithm(self, algorithm: CipherAlg... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\ciphers\modes.pyi | modes.pyi | Other | 3,089 | 0.85 | 0.531915 | 0 | node-utils | 695 | 2024-01-11T17:57:22.376716 | GPL-3.0 | false | 79c5fdeb2d8eb75b57b746845be197a9 |
from abc import ABCMeta, abstractmethod\nfrom typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import CipherBackend\nfrom cryptography.hazmat.primitives.ciphers.modes import Mode\n\nclass AEADCipherContext(metaclass=ABCMeta):\n @abstractmethod\n def authenticate_additional_data(self, data: b... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\ciphers\__init__.pyi | __init__.pyi | Other | 1,363 | 0.85 | 0.431818 | 0 | react-lib | 69 | 2024-09-13T20:46:38.002343 | MIT | false | b51219aaa908647d5091535b6349eab2 |
from typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import HashBackend, HMACBackend\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\nfrom cryptography.hazmat.primitives.kdf import KeyDerivationFunction\n\nclass ConcatKDFHash(KeyDerivationFunction):\n def __init__(\n se... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\kdf\concatkdf.pyi | concatkdf.pyi | Other | 951 | 0.85 | 0.333333 | 0 | awesome-app | 88 | 2025-05-06T02:43:37.410646 | MIT | false | 9fcf655beb7a2ce334dcb866b955e969 |
from typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import HMACBackend\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\nfrom cryptography.hazmat.primitives.kdf import KeyDerivationFunction\n\nclass HKDF(KeyDerivationFunction):\n def __init__(\n self,\n algorithm... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\kdf\hkdf.pyi | hkdf.pyi | Other | 902 | 0.85 | 0.363636 | 0 | react-lib | 913 | 2024-12-08T00:22:00.051460 | BSD-3-Clause | false | cfa09a7fc09250f8db01e343b63e4800 |
from enum import Enum\nfrom typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import HMACBackend\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\nfrom cryptography.hazmat.primitives.kdf import KeyDerivationFunction\n\nclass Mode(Enum):\n CounterMode: str\n\nclass CounterLocation... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\kdf\kbkdf.pyi | kbkdf.pyi | Other | 867 | 0.85 | 0.2 | 0 | awesome-app | 88 | 2024-02-01T12:33:38.199247 | Apache-2.0 | false | a80815e692f7850f8a1c572263442ea9 |
from typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import PBKDF2HMACBackend\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\nfrom cryptography.hazmat.primitives.kdf import KeyDerivationFunction\n\nclass PBKDF2HMAC(KeyDerivationFunction):\n def __init__(\n self, algori... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\kdf\pbkdf2.pyi | pbkdf2.pyi | Other | 561 | 0.85 | 0.333333 | 0 | python-kit | 214 | 2023-11-15T21:05:21.529581 | BSD-3-Clause | false | 869dd7f4f9702ebee010b59a909a5144 |
from typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import ScryptBackend\nfrom cryptography.hazmat.primitives.kdf import KeyDerivationFunction\n\nclass Scrypt(KeyDerivationFunction):\n def __init__(self, salt: bytes, length: int, n: int, r: int, p: int, backend: Optional[ScryptBackend] = ...)... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\kdf\scrypt.pyi | scrypt.pyi | Other | 452 | 0.85 | 0.444444 | 0 | vue-tools | 911 | 2024-05-27T19:39:42.586472 | Apache-2.0 | false | 5ba90ad52c6bba4320cdc783e86049de |
from typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import HashBackend\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\nfrom cryptography.hazmat.primitives.kdf import KeyDerivationFunction\n\nclass X963KDF(KeyDerivationFunction):\n def __init__(\n self, algorithm: Hash... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\kdf\x963kdf.pyi | x963kdf.pyi | Other | 545 | 0.85 | 0.333333 | 0 | python-kit | 796 | 2024-08-06T04:14:46.110957 | BSD-3-Clause | false | 6e6dbd3d7e7148848b24d2951eb47e9a |
from abc import ABCMeta, abstractmethod\n\nclass KeyDerivationFunction(metaclass=ABCMeta):\n @abstractmethod\n def derive(self, key_material: bytes) -> bytes: ...\n @abstractmethod\n def verify(self, key_material: bytes, expected_key: bytes) -> None: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\kdf\__init__.pyi | __init__.pyi | Other | 261 | 0.85 | 0.428571 | 0 | awesome-app | 607 | 2024-07-03T04:53:45.510528 | Apache-2.0 | false | 77f9c2ee91facb19db525d6266ba68ea |
from typing import Any, List, Optional, Tuple, Union\n\nfrom cryptography.hazmat.primitives.asymmetric.dsa import DSAPrivateKeyWithSerialization\nfrom cryptography.hazmat.primitives.asymmetric.ec import EllipticCurvePrivateKeyWithSerialization\nfrom cryptography.hazmat.primitives.asymmetric.rsa import RSAPrivateKeyWith... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\serialization\pkcs12.pyi | pkcs12.pyi | Other | 933 | 0.85 | 0.111111 | 0 | vue-tools | 634 | 2024-10-12T09:54:20.147663 | GPL-3.0 | false | 26f81bd19916601ee4c4617fa69bf523 |
from abc import ABCMeta\nfrom enum import Enum\nfrom typing import Any, Optional, Union\n\nfrom cryptography.hazmat.backends.interfaces import (\n DERSerializationBackend,\n DSABackend,\n EllipticCurveBackend,\n PEMSerializationBackend,\n RSABackend,\n)\nfrom cryptography.hazmat.primitives.asymmetric.dh ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\serialization\__init__.pyi | __init__.pyi | Other | 2,359 | 0.95 | 0.206349 | 0 | awesome-app | 430 | 2023-12-03T11:19:37.196076 | Apache-2.0 | false | a3488677641fbf763387e630e0f3657a |
from typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import HMACBackend\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\n\nclass HOTP(object):\n def __init__(\n self, key: bytes, length: int, algorithm: HashAlgorithm, backend: HMACBackend, enforce_key_length: bool = ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\twofactor\hotp.pyi | hotp.pyi | Other | 540 | 0.85 | 0.416667 | 0 | awesome-app | 339 | 2025-06-26T19:41:48.691013 | GPL-3.0 | false | ea6e9bd405d06631ff1ef66d373d9d8f |
from typing import Optional\n\nfrom cryptography.hazmat.backends.interfaces import HMACBackend\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\n\nclass TOTP(object):\n def __init__(\n self,\n key: bytes,\n length: int,\n algorithm: HashAlgorithm,\n time_step: int,\... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\twofactor\totp.pyi | totp.pyi | Other | 585 | 0.85 | 0.277778 | 0 | node-utils | 803 | 2023-10-02T02:06:27.292797 | MIT | false | 612212a7dc132efa982821df1af0eaf8 |
class InvalidToken(Exception): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\hazmat\primitives\twofactor\__init__.pyi | __init__.pyi | Other | 35 | 0.65 | 1 | 0 | node-utils | 297 | 2023-07-29T22:28:46.269427 | Apache-2.0 | false | fe5929a6c7e818d84076a82f2234d72e |
from typing import Any, Iterator\n\nfrom cryptography.x509 import GeneralName, ObjectIdentifier\n\nclass Extension:\n value: Any = ...\n\nclass GeneralNames:\n def __iter__(self) -> Iterator[GeneralName]: ...\n\nclass DistributionPoint:\n full_name: GeneralNames = ...\n\nclass CRLDistributionPoints:\n def _... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\x509\extensions.pyi | extensions.pyi | Other | 557 | 0.85 | 0.409091 | 0 | vue-tools | 917 | 2024-04-13T21:19:49.152360 | BSD-3-Clause | false | df51c0ef3d5eea1ab8622ac647b0a42f |
from typing import Dict, Optional\n\nfrom cryptography.hazmat.primitives.hashes import HashAlgorithm\nfrom cryptography.x509 import ObjectIdentifier\n\nclass ExtensionOID:\n SUBJECT_DIRECTORY_ATTRIBUTES: ObjectIdentifier = ...\n SUBJECT_KEY_IDENTIFIER: ObjectIdentifier = ...\n KEY_USAGE: ObjectIdentifier = ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\x509\oid.pyi | oid.pyi | Other | 4,153 | 0.85 | 0.075472 | 0 | node-utils | 863 | 2023-11-24T10:13:46.891576 | BSD-3-Clause | false | 7827e56325c199f67d462afd22c6973e |
import datetime\nfrom abc import ABCMeta, abstractmethod\nfrom enum import Enum\nfrom ipaddress import IPv4Address, IPv4Network, IPv6Address, IPv6Network\nfrom typing import Any, ClassVar, Generator, Generic, Iterable, List, Optional, Sequence, Text, Type, TypeVar, Union\n\nfrom cryptography.hazmat.backends.interfaces ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\cryptography\x509\__init__.pyi | __init__.pyi | Other | 17,734 | 0.95 | 0.361905 | 0.005376 | python-kit | 894 | 2024-11-06T19:47:25.243291 | BSD-3-Clause | false | 9d19be6c4e07addd07a33b6df625a26b |
import datetime\nfrom typing import Iterable, Optional, Union\n\nfrom dateutil.relativedelta import relativedelta\n\nclass DateTimeRange(object):\n NOT_A_TIME_STR: str\n start_time_format: str\n end_time_format: str\n is_output_elapse: bool\n separator: str\n def __init__(\n self,\n star... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\datetimerange\__init__.pyi | __init__.pyi | Other | 2,062 | 0.85 | 0.553191 | 0 | python-kit | 248 | 2024-07-03T03:56:18.038505 | GPL-3.0 | false | 93ae221a207863b58853acafbfc8557b |
from datetime import date\nfrom typing_extensions import Literal\n\nEASTER_JULIAN: Literal[1]\nEASTER_ORTHODOX: Literal[2]\nEASTER_WESTERN: Literal[3]\n\ndef easter(year: int, method: Literal[1, 2, 3] = ...) -> date: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\dateutil\easter.pyi | easter.pyi | Other | 214 | 0.85 | 0.125 | 0 | vue-tools | 307 | 2023-12-30T07:03:05.084361 | BSD-3-Clause | false | 5ccca153cdddbb6559fd89c8b40cb37e |
from datetime import datetime, tzinfo\nfrom typing import IO, Any, Dict, List, Mapping, Optional, Text, Tuple, Union\n\n_FileOrStr = Union[bytes, Text, IO[str], IO[Any]]\n\nclass parserinfo(object):\n JUMP: List[str]\n WEEKDAYS: List[Tuple[str, str]]\n MONTHS: List[Tuple[str, str]]\n HMS: List[Tuple[str, st... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\dateutil\parser.pyi | parser.pyi | Other | 1,779 | 0.85 | 0.431373 | 0.02381 | node-utils | 235 | 2024-09-10T22:16:08.523892 | BSD-3-Clause | false | 70779af06cf2f5d137096af168f30547 |
from datetime import date, datetime, timedelta\nfrom typing import Optional, SupportsFloat, TypeVar, Union, overload\n\nfrom ._common import weekday\n\n_SelfT = TypeVar("_SelfT", bound=relativedelta)\n_DateT = TypeVar("_DateT", date, datetime)\n# Work around attribute and type having the same name.\n_weekday = weekday\... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\dateutil\relativedelta.pyi | relativedelta.pyi | Other | 3,243 | 0.95 | 0.278351 | 0.032258 | awesome-app | 866 | 2023-11-13T10:26:43.554965 | BSD-3-Clause | false | 6707133d83cd96c9f6f331d5f5cd9c6e |
import datetime\nfrom typing import Any, Iterable, Optional, Union\n\nfrom ._common import weekday as weekdaybase\n\nYEARLY: int\nMONTHLY: int\nWEEKLY: int\nDAILY: int\nHOURLY: int\nMINUTELY: int\nSECONDLY: int\n\nclass weekday(weekdaybase): ...\n\nMO: weekday\nTU: weekday\nWE: weekday\nTH: weekday\nFR: weekday\nSA: we... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\dateutil\rrule.pyi | rrule.pyi | Other | 3,219 | 0.85 | 0.371429 | 0 | vue-tools | 713 | 2023-08-23T14:15:45.404597 | GPL-3.0 | false | 22326f50089b9bb60dea5ac2b239eb90 |
from datetime import datetime, timedelta, tzinfo\nfrom typing import Optional\n\ndef default_tzinfo(dt: datetime, tzinfo: tzinfo) -> datetime: ...\ndef today(tzinfo: Optional[tzinfo] = ...) -> datetime: ...\ndef within_delta(dt1: datetime, dt2: datetime, delta: timedelta) -> bool: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\dateutil\utils.pyi | utils.pyi | Other | 281 | 0.85 | 0.5 | 0 | node-utils | 652 | 2024-03-04T08:02:58.168762 | MIT | false | 0ac03eaca3546db40ac5f08a2f8e5a54 |
from typing import Optional, TypeVar\n\n_T = TypeVar("_T")\n\nclass weekday(object):\n def __init__(self, weekday: int, n: Optional[int] = ...) -> None: ...\n def __call__(self: _T, n: int) -> _T: ...\n def __eq__(self, other) -> bool: ...\n def __repr__(self) -> str: ...\n def __hash__(self) -> int: ...... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\dateutil\_common.pyi | _common.pyi | Other | 340 | 0.85 | 0.5 | 0 | react-lib | 1 | 2024-07-29T04:12:28.883035 | Apache-2.0 | false | b3d8a3bf3207d63fd1538ed0e19fe913 |
import datetime\nfrom typing import IO, Any, List, Optional, Text, Tuple, Union\n\nfrom ..relativedelta import relativedelta\nfrom ._common import _tzinfo as _tzinfo, enfold as enfold, tzname_in_python2 as tzname_in_python2, tzrangebase as tzrangebase\n\n_FileObj = Union[str, Text, IO[str], IO[Text]]\n\nZERO: datetime.... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\dateutil\tz\tz.pyi | tz.pyi | Other | 3,970 | 0.85 | 0.544554 | 0 | react-lib | 76 | 2023-12-14T17:00:00.555241 | GPL-3.0 | false | 8b7a73529a7f58c7729c0546167409f0 |
from datetime import datetime, timedelta, tzinfo\nfrom typing import Any, Optional\n\ndef tzname_in_python2(namefunc): ...\ndef enfold(dt: datetime, fold: int = ...): ...\n\nclass _DatetimeWithFold(datetime):\n @property\n def fold(self): ...\n\nclass _tzinfo(tzinfo):\n def is_ambiguous(self, dt: datetime) -> ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\dateutil\tz\_common.pyi | _common.pyi | Other | 818 | 0.85 | 0.625 | 0 | python-kit | 25 | 2025-02-09T16:51:10.356286 | GPL-3.0 | false | 3c3fc09a1e1b54fa2ddb0b2844993f13 |
from .tz import (\n datetime_ambiguous as datetime_ambiguous,\n datetime_exists as datetime_exists,\n gettz as gettz,\n resolve_imaginary as resolve_imaginary,\n tzfile as tzfile,\n tzical as tzical,\n tzlocal as tzlocal,\n tzoffset as tzoffset,\n tzrange as tzrange,\n tzstr as tzstr,\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\dateutil\tz\__init__.pyi | __init__.pyi | Other | 340 | 0.85 | 0 | 0 | vue-tools | 436 | 2025-05-14T21:59:48.826438 | MIT | false | 32f747b7e6ae75439be5c5e4d3aad39c |
from typing import Any, Callable, Optional, Type, TypeVar, overload\n\n_F = TypeVar("_F", bound=Callable[..., Any])\n\nclass ClassicAdapter:\n reason: str\n version: str\n action: Optional[str]\n category: Type[DeprecationWarning]\n def __init__(\n self, reason: str = ..., version: str = ..., acti... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\deprecated\classic.pyi | classic.pyi | Other | 783 | 0.85 | 0.285714 | 0 | awesome-app | 738 | 2024-08-19T05:53:52.004964 | GPL-3.0 | false | 05b7d4e1af052aa80d840317331dbdbe |
from typing import Any, Callable, Optional, Type, TypeVar, overload\nfrom typing_extensions import Literal\n\nfrom .classic import ClassicAdapter\n\n_F = TypeVar("_F", bound=Callable[..., Any])\n\nclass SphinxAdapter(ClassicAdapter):\n directive: Literal["versionadded", "versionchanged", "deprecated"]\n reason: s... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\deprecated\sphinx.pyi | sphinx.pyi | Other | 1,129 | 0.85 | 0.225806 | 0 | python-kit | 324 | 2024-01-17T02:19:42.130872 | GPL-3.0 | false | 14ffceb138198fac42670956ceeaf2d5 |
from .classic import deprecated as deprecated\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\deprecated\__init__.pyi | __init__.pyi | Other | 46 | 0.65 | 0 | 0 | awesome-app | 109 | 2024-08-17T22:00:45.477956 | GPL-3.0 | false | d2f6667b45726d8dce96e8284ab966e8 |
from typing import Dict, List, Optional, Pattern, Text, Tuple, Union\n\n_DEFAULT_DELIMITER: str\n\ndef emojize(string: str, use_aliases: bool = ..., delimiters: Tuple[str, str] = ...) -> str: ...\ndef demojize(string: str, delimiters: Tuple[str, str] = ...) -> str: ...\ndef get_emoji_regexp() -> Pattern[Text]: ...\ndef... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\emoji\core.pyi | core.pyi | Other | 419 | 0.85 | 0.555556 | 0 | node-utils | 580 | 2024-07-27T18:28:36.660821 | GPL-3.0 | false | b6aaedb38890976a681958055dbeca39 |
from typing import Dict, Text\n\nEMOJI_ALIAS_UNICODE: Dict[Text, Text]\nEMOJI_UNICODE: Dict[Text, Text]\nUNICODE_EMOJI: Dict[Text, Text]\nUNICODE_EMOJI_ALIAS: Dict[Text, Text]\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\emoji\unicode_codes.pyi | unicode_codes.pyi | Other | 171 | 0.85 | 0 | 0 | python-kit | 461 | 2023-10-16T08:09:03.285578 | Apache-2.0 | false | 20f5828a06741affd98d58e312106531 |
from .core import (\n demojize as demojize,\n emoji_count as emoji_count,\n emoji_lis as emoji_lis,\n emojize as emojize,\n get_emoji_regexp as get_emoji_regexp,\n)\nfrom .unicode_codes import (\n EMOJI_ALIAS_UNICODE as EMOJI_ALIAS_UNICODE,\n EMOJI_UNICODE as EMOJI_UNICODE,\n UNICODE_EMOJI as UN... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\emoji\__init__.pyi | __init__.pyi | Other | 373 | 0.85 | 0 | 0 | vue-tools | 828 | 2025-02-07T03:35:48.563687 | MIT | false | 19be4b3eaa25bca4185a36ca4b872144 |
from datetime import timedelta\nfrom types import TracebackType\nfrom typing import (\n Any,\n ByteString,\n Callable,\n ContextManager,\n Dict,\n Iterable,\n List,\n NoReturn,\n Optional,\n Text,\n Tuple,\n Type,\n TypeVar,\n Union,\n)\n\nfrom .blueprints import Blueprint\nfro... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\app.pyi | app.pyi | Other | 8,224 | 0.95 | 0.374359 | 0.021277 | react-lib | 380 | 2024-07-20T22:28:32.163512 | BSD-3-Clause | false | fc4dd8ddd326281b50b644f12a1f87a1 |
from typing import Any, Callable, Optional, Type, TypeVar, Union\n\nfrom .app import _ViewFunc\nfrom .helpers import _PackageBoundObject\n\n_T = TypeVar("_T")\n_VT = TypeVar("_VT", bound=_ViewFunc)\n\nclass _Sentinel(object): ...\n\nclass BlueprintSetupState:\n app: Any = ...\n blueprint: Any = ...\n options: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\blueprints.pyi | blueprints.pyi | Other | 3,564 | 0.85 | 0.4375 | 0 | awesome-app | 250 | 2025-01-09T17:31:23.080188 | BSD-3-Clause | false | 86f9ef83fb5978ab9cb2434f523c7ac8 |
from typing import Any, Optional\n\nimport click\n\nclass NoAppException(click.UsageError): ...\n\ndef find_best_app(script_info: Any, module: Any): ...\ndef call_factory(script_info: Any, app_factory: Any, arguments: Any = ...): ...\ndef find_app_by_string(script_info: Any, module: Any, app_name: Any): ...\ndef prepar... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\cli.pyi | cli.pyi | Other | 2,195 | 0.85 | 0.455882 | 0.018868 | react-lib | 949 | 2024-10-17T00:17:03.693639 | GPL-3.0 | false | 52a98a5bc081889e36ec437dc6529e2f |
from typing import Any, Dict, Optional\n\nclass ConfigAttribute:\n __name__: Any = ...\n get_converter: Any = ...\n def __init__(self, name: Any, get_converter: Optional[Any] = ...) -> None: ...\n def __get__(self, obj: Any, type: Optional[Any] = ...): ...\n def __set__(self, obj: Any, value: Any) -> Non... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\config.pyi | config.pyi | Other | 871 | 0.85 | 0.666667 | 0 | node-utils | 862 | 2025-04-04T15:09:28.143133 | BSD-3-Clause | false | cb114baf6175e87484db5828be62baa6 |
from typing import Any, Optional\n\nclass _AppCtxGlobals:\n def get(self, name: Any, default: Optional[Any] = ...): ...\n def pop(self, name: Any, default: Any = ...): ...\n def setdefault(self, name: Any, default: Optional[Any] = ...): ...\n def __contains__(self, item: Any): ...\n def __iter__(self): .... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\ctx.pyi | ctx.pyi | Other | 1,335 | 0.85 | 0.625 | 0 | python-kit | 502 | 2023-08-17T04:10:19.951435 | Apache-2.0 | false | 428255a43f5ed3293389db6c2eb0f7ae |
from typing import Any\n\nclass UnexpectedUnicodeError(AssertionError, UnicodeError): ...\n\nclass DebugFilesKeyError(KeyError, AssertionError):\n msg: Any = ...\n def __init__(self, request: Any, key: Any) -> None: ...\n\nclass FormDataRoutingRedirect(AssertionError):\n def __init__(self, request: Any) -> Non... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\debughelpers.pyi | debughelpers.pyi | Other | 507 | 0.85 | 0.571429 | 0 | react-lib | 101 | 2023-12-28T15:00:27.419977 | GPL-3.0 | false | 5470e2f5b18f02d22746bb1c6b550e7d |
from typing import Any\n\nfrom werkzeug.local import LocalStack\n\nfrom .app import Flask\nfrom .wrappers import Request\n\nclass _FlaskLocalProxy(Flask):\n def _get_current_object(self) -> Flask: ...\n\n_request_ctx_stack: LocalStack\n_app_ctx_stack: LocalStack\ncurrent_app: _FlaskLocalProxy\nrequest: Request\nsess... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\globals.pyi | globals.pyi | Other | 322 | 0.85 | 0.125 | 0 | react-lib | 160 | 2025-03-22T10:21:06.460532 | MIT | false | 39935fc640929d53e61fbec87e4d74c6 |
from typing import Any, Optional\n\nfrom .cli import AppGroup\nfrom .wrappers import Response\n\ndef get_env(): ...\ndef get_debug_flag(): ...\ndef get_load_dotenv(default: bool = ...): ...\ndef stream_with_context(generator_or_function: Any): ...\ndef make_response(*args: Any) -> Response: ...\ndef url_for(endpoint: s... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\helpers.pyi | helpers.pyi | Other | 2,036 | 0.85 | 0.472727 | 0 | awesome-app | 904 | 2024-04-12T18:02:30.122489 | GPL-3.0 | false | ca3def37131061689e46b3b2b183e75b |
from typing import Any\n\ndef wsgi_errors_stream(): ...\ndef has_level_handler(logger: Any): ...\n\ndefault_handler: Any\n\ndef create_logger(app: Any): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\logging.pyi | logging.pyi | Other | 150 | 0.85 | 0.375 | 0 | node-utils | 494 | 2024-07-21T00:15:39.663000 | Apache-2.0 | false | 144963e3235fc27a623bc0f915479d76 |
from abc import ABCMeta\nfrom typing import Any, MutableMapping, Optional\n\nfrom werkzeug.datastructures import CallbackDict\n\nclass SessionMixin(MutableMapping[str, Any], metaclass=ABCMeta):\n @property\n def permanent(self): ...\n @permanent.setter\n def permanent(self, value: Any) -> None: ...\n new... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\sessions.pyi | sessions.pyi | Other | 2,017 | 0.85 | 0.438596 | 0 | node-utils | 581 | 2025-04-22T15:39:53.738149 | MIT | false | 9614213c43922118559b018986bde69d |
from typing import Any, Optional\n\nsignals_available: bool\n\nclass Namespace:\n def signal(self, name: Any, doc: Optional[Any] = ...): ...\n\nclass _FakeSignal:\n name: Any = ...\n __doc__: Any = ...\n def __init__(self, name: Any, doc: Optional[Any] = ...) -> None: ...\n send: Any = ...\n connect: ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\signals.pyi | signals.pyi | Other | 718 | 0.85 | 0.137931 | 0 | node-utils | 211 | 2023-07-24T05:27:37.309817 | GPL-3.0 | false | 57a602160e36c2ae06f6d70507f64d22 |
from typing import Any, Iterable, Text, Union\n\nfrom jinja2 import BaseLoader, Environment as BaseEnvironment\n\nclass Environment(BaseEnvironment):\n app: Any = ...\n def __init__(self, app: Any, **options: Any) -> None: ...\n\nclass DispatchingJinjaLoader(BaseLoader):\n app: Any = ...\n def __init__(self... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\templating.pyi | templating.pyi | Other | 604 | 0.85 | 0.5 | 0 | react-lib | 195 | 2024-10-16T03:14:54.777270 | Apache-2.0 | false | 0f3d544abffe2cf523f45463f754b540 |
from typing import IO, Any, Iterable, Mapping, Optional, Text, TypeVar, Union\n\nfrom click import BaseCommand\nfrom click.testing import CliRunner, Result\nfrom werkzeug.test import Client, EnvironBuilder as WerkzeugEnvironBuilder\n\n# Response type for the client below.\n# By default _R is Tuple[Iterable[Any], Union[... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\testing.pyi | testing.pyi | Other | 1,827 | 0.95 | 0.232143 | 0.16 | awesome-app | 432 | 2025-06-21T02:17:12.112338 | GPL-3.0 | true | 6ffa1f7418651ee87cc68be197e19be8 |
from typing import Any\n\nhttp_method_funcs: Any\n\nclass View:\n methods: Any = ...\n provide_automatic_options: Any = ...\n decorators: Any = ...\n def dispatch_request(self, *args: Any, **kwargs: Any) -> Any: ...\n @classmethod\n def as_view(cls, name: Any, *class_args: Any, **class_kwargs: Any): .... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\views.pyi | views.pyi | Other | 530 | 0.85 | 0.411765 | 0 | node-utils | 217 | 2024-11-29T01:17:29.171469 | MIT | false | edec9683082392ca7840c7224cb6b0b9 |
from typing import Any, Dict, Optional\n\nfrom werkzeug.exceptions import HTTPException\nfrom werkzeug.routing import Rule\nfrom werkzeug.wrappers import Request as RequestBase, Response as ResponseBase\n\nclass JSONMixin:\n @property\n def is_json(self) -> bool: ...\n @property\n def json(self): ...\n d... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\wrappers.pyi | wrappers.pyi | Other | 1,145 | 0.95 | 0.34375 | 0.107143 | node-utils | 78 | 2024-01-03T16:00:29.665070 | Apache-2.0 | false | 483c5b67064aeb1ba7ecf5c4b21913c3 |
from jinja2 import Markup as Markup, escape as escape\nfrom werkzeug.exceptions import abort as abort\nfrom werkzeug.utils import redirect as redirect\n\nfrom .app import Flask as Flask\nfrom .blueprints import Blueprint as Blueprint\nfrom .config import Config as Config\nfrom .ctx import (\n after_this_request as a... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\__init__.pyi | __init__.pyi | Other | 1,688 | 0.85 | 0 | 0 | awesome-app | 163 | 2024-06-10T22:35:50.115034 | Apache-2.0 | false | 8edaecbc2a700659f2436e4f3ca35db1 |
from typing import Any, Optional\n\nclass JSONTag:\n key: Any = ...\n serializer: Any = ...\n def __init__(self, serializer: Any) -> None: ...\n def check(self, value: Any) -> None: ...\n def to_json(self, value: Any) -> None: ...\n def to_python(self, value: Any) -> None: ...\n def tag(self, value... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\json\tag.pyi | tag.pyi | Other | 1,918 | 0.85 | 0.641791 | 0 | python-kit | 990 | 2024-02-29T14:23:49.994812 | GPL-3.0 | false | cdac2a808abc0243c8cf126859dbf38b |
import json as _json\nfrom typing import Any\n\nfrom jinja2 import Markup\n\nclass JSONEncoder(_json.JSONEncoder):\n def default(self, o: Any): ...\n\nclass JSONDecoder(_json.JSONDecoder): ...\n\ndef detect_encoding(data: bytes) -> str: ... # undocumented\ndef dumps(obj: Any, **kwargs: Any): ...\ndef dump(obj: Any,... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\flask\json\__init__.pyi | __init__.pyi | Other | 654 | 0.95 | 0.631579 | 0 | node-utils | 936 | 2024-11-07T15:48:55.876380 | Apache-2.0 | false | 342080b8870228e59ca58b311d39630d |
from types import TracebackType\nfrom typing import Optional, Sequence, Text, Type\n\nfrom geoip2.models import ASN, ISP, AnonymousIP, City, ConnectionType, Country, Domain, Enterprise\nfrom maxminddb.reader import Metadata\n\n_Locales = Optional[Sequence[Text]]\n\nclass Reader:\n def __init__(self, filename: Text, ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\geoip2\database.pyi | database.pyi | Other | 1,133 | 0.85 | 0.518519 | 0 | node-utils | 414 | 2024-07-12T13:22:25.928087 | BSD-3-Clause | false | 1f6b68ad9aafb755682f92462d73b914 |
from typing import Optional, Text\n\nclass GeoIP2Error(RuntimeError): ...\nclass AddressNotFoundError(GeoIP2Error): ...\nclass AuthenticationError(GeoIP2Error): ...\n\nclass HTTPError(GeoIP2Error):\n http_status: Optional[int]\n uri: Optional[Text]\n def __init__(self, message: Text, http_status: Optional[int]... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\geoip2\errors.pyi | errors.pyi | Other | 494 | 0.85 | 0.571429 | 0 | python-kit | 450 | 2024-04-23T10:22:17.464855 | GPL-3.0 | false | cbf6837d64918a7724acb103d082f5ea |
class SimpleEquality:\n def __eq__(self, other: object) -> bool: ...\n def __ne__(self, other: object) -> bool: ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\geoip2\mixins.pyi | mixins.pyi | Other | 120 | 0.85 | 1 | 0 | node-utils | 611 | 2023-12-10T06:44:11.205391 | Apache-2.0 | false | 1b3dbe6524e6c09efac4965769dab253 |
from typing import Any, Mapping, Optional, Sequence, Text\n\nfrom geoip2 import records\nfrom geoip2.mixins import SimpleEquality\n\n_Locales = Optional[Sequence[Text]]\n_RawResponse = Mapping[Text, Mapping[Text, Any]]\n\nclass Country(SimpleEquality):\n continent: records.Continent\n country: records.Country\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\geoip2\models.pyi | models.pyi | Other | 1,867 | 0.85 | 0.274194 | 0 | python-kit | 363 | 2024-04-21T16:28:31.038194 | GPL-3.0 | false | 89110c12f6c39a0beb67c3d351451aea |
from typing import Any, Mapping, Optional, Sequence, Text, Tuple\n\nfrom geoip2.mixins import SimpleEquality\n\n_Locales = Optional[Sequence[Text]]\n_Names = Mapping[Text, Text]\n\nclass Record(SimpleEquality):\n def __init__(self, **kwargs: Any) -> None: ...\n def __setattr__(self, name: Text, value: Any) -> Non... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\geoip2\records.pyi | records.pyi | Other | 2,071 | 0.85 | 0.253012 | 0 | awesome-app | 691 | 2024-08-12T14:38:41.848728 | BSD-3-Clause | false | bbd2e771d4e67d2bcdf0c0dafb5646b6 |
"""\n@generated by mypy-protobuf. Do not edit manually!\nisort:skip_file\n"""\nfrom google.protobuf.descriptor import (\n Descriptor as google___protobuf___descriptor___Descriptor,\n FileDescriptor as google___protobuf___descriptor___FileDescriptor,\n)\n\nfrom google.protobuf.internal.well_known_types import (\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\any_pb2.pyi | any_pb2.pyi | Other | 1,353 | 0.85 | 0.06383 | 0.027027 | vue-tools | 998 | 2023-08-22T21:10:00.579358 | GPL-3.0 | false | 8ddd5ab2d02ab8db7e25b276bc0dbc1a |
"""\n@generated by mypy-protobuf. Do not edit manually!\nisort:skip_file\n"""\nfrom google.protobuf.descriptor import (\n Descriptor as google___protobuf___descriptor___Descriptor,\n FileDescriptor as google___protobuf___descriptor___FileDescriptor,\n)\n\nfrom google.protobuf.internal.containers import (\n Re... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\api_pb2.pyi | api_pb2.pyi | Other | 4,881 | 0.85 | 0.131579 | 0.032258 | vue-tools | 379 | 2023-10-13T19:35:44.732912 | BSD-3-Clause | false | 4f96ad94218413507f3eeaca7ce0423c |
from typing import Any\n\nfrom .descriptor_pb2 import (\n EnumOptions,\n EnumValueOptions,\n FieldOptions,\n FileOptions,\n MessageOptions,\n MethodOptions,\n OneofOptions,\n ServiceOptions,\n)\nfrom .message import Message\n\nclass Error(Exception): ...\nclass TypeTransformationError(Error): ..... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\descriptor.pyi | descriptor.pyi | Other | 7,843 | 0.85 | 0.151515 | 0 | react-lib | 139 | 2024-04-07T22:44:25.042704 | BSD-3-Clause | false | 7065428cea16dc1d0d3d59d71da8f10e |
"""\n@generated by mypy-protobuf. Do not edit manually!\nisort:skip_file\n"""\nfrom google.protobuf.descriptor import (\n Descriptor as google___protobuf___descriptor___Descriptor,\n EnumDescriptor as google___protobuf___descriptor___EnumDescriptor,\n FileDescriptor as google___protobuf___descriptor___FileDes... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\descriptor_pb2.pyi | descriptor_pb2.pyi | Other | 43,146 | 0.85 | 0.19891 | 0.042994 | awesome-app | 382 | 2024-12-21T06:19:15.622606 | MIT | false | 66f4be101502eabf566a7694cebc9e9a |
from typing import Any, Optional\n\nclass DescriptorPool:\n def __new__(cls, descriptor_db: Optional[Any] = ...): ...\n def __init__(self, descriptor_db: Optional[Any] = ...) -> None: ...\n def Add(self, file_desc_proto): ...\n def AddSerializedFile(self, serialized_file_desc_proto): ...\n def AddDescrip... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\descriptor_pool.pyi | descriptor_pool.pyi | Other | 744 | 0.85 | 0.833333 | 0 | awesome-app | 837 | 2023-11-28T03:58:30.189440 | GPL-3.0 | false | 4f2008c20aa1b810ee4412c40c3cf285 |
"""\n@generated by mypy-protobuf. Do not edit manually!\nisort:skip_file\n"""\nfrom google.protobuf.descriptor import (\n Descriptor as google___protobuf___descriptor___Descriptor,\n FileDescriptor as google___protobuf___descriptor___FileDescriptor,\n)\n\nfrom google.protobuf.internal.well_known_types import (\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\duration_pb2.pyi | duration_pb2.pyi | Other | 1,348 | 0.85 | 0.065217 | 0.027778 | python-kit | 546 | 2025-02-28T21:59:47.919711 | Apache-2.0 | false | 4897414a66693632959d616c85acb952 |
"""\n@generated by mypy-protobuf. Do not edit manually!\nisort:skip_file\n"""\nfrom google.protobuf.descriptor import (\n Descriptor as google___protobuf___descriptor___Descriptor,\n FileDescriptor as google___protobuf___descriptor___FileDescriptor,\n)\n\nfrom google.protobuf.message import (\n Message as goo... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\empty_pb2.pyi | empty_pb2.pyi | Other | 603 | 0.85 | 0.090909 | 0 | awesome-app | 169 | 2024-01-08T18:53:06.433822 | BSD-3-Clause | false | f4ee0a95564aefced12d8064376b4c65 |
"""\n@generated by mypy-protobuf. Do not edit manually!\nisort:skip_file\n"""\nfrom google.protobuf.descriptor import (\n Descriptor as google___protobuf___descriptor___Descriptor,\n FileDescriptor as google___protobuf___descriptor___FileDescriptor,\n)\n\nfrom google.protobuf.internal.containers import (\n Re... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\field_mask_pb2.pyi | field_mask_pb2.pyi | Other | 1,558 | 0.85 | 0.06 | 0.025641 | awesome-app | 113 | 2024-02-26T17:46:21.300164 | Apache-2.0 | false | b0ee2cfc7b6a6786bb311a90b954475b |
from typing import Any, Dict, Text, TypeVar, Union\n\nfrom google.protobuf.message import Message\n\n_MessageVar = TypeVar("_MessageVar", bound=Message)\n\nclass Error(Exception): ...\nclass ParseError(Error): ...\nclass SerializeToJsonError(Error): ...\n\ndef MessageToJson(\n message: Message,\n including_defaul... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\json_format.pyi | json_format.pyi | Other | 903 | 0.85 | 0.269231 | 0 | awesome-app | 492 | 2025-04-18T14:54:46.490982 | Apache-2.0 | false | 5d3a9cba6e166e734ad22a26606aa44d |
import sys\nfrom typing import Any, ByteString, Sequence, Tuple, Type, TypeVar, Union, overload\n\nfrom .descriptor import Descriptor, FieldDescriptor\nfrom .internal.extension_dict import _ExtensionDict, _ExtensionFieldDescriptor\n\nclass Error(Exception): ...\nclass DecodeError(Error): ...\nclass EncodeError(Error): ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\message.pyi | message.pyi | Other | 2,522 | 0.95 | 0.553571 | 0.137255 | vue-tools | 493 | 2024-08-22T19:04:57.755731 | MIT | false | e620d23007052f3cc6222381c5eb2dfd |
from typing import Any, Dict, Iterable, Optional, Type\n\nfrom google.protobuf.descriptor import Descriptor\nfrom google.protobuf.descriptor_pb2 import FileDescriptorProto\nfrom google.protobuf.descriptor_pool import DescriptorPool\nfrom google.protobuf.message import Message\n\nclass MessageFactory:\n pool: Any\n ... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\message_factory.pyi | message_factory.pyi | Other | 631 | 0.85 | 0.357143 | 0 | python-kit | 760 | 2023-09-06T21:08:22.760714 | MIT | false | 8c09e14cbc5fa52a438e8f604bd6eaac |
class GeneratedProtocolMessageType(type):\n def __new__(cls, name, bases, dictionary): ...\n def __init__(self, name, bases, dictionary) -> None: ...\n\ndef ParseMessage(descriptor, byte_str): ...\ndef MakeClass(descriptor): ...\n | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\reflection.pyi | reflection.pyi | Other | 230 | 0.85 | 0.833333 | 0 | vue-tools | 80 | 2023-12-07T05:06:59.614503 | GPL-3.0 | false | 8b94abae55235ae3db76023275e2aeb0 |
from concurrent.futures import Future\nfrom typing import Callable, Optional, Text, Type\n\nfrom google.protobuf.descriptor import MethodDescriptor, ServiceDescriptor\nfrom google.protobuf.message import Message\n\nclass RpcException(Exception): ...\n\nclass Service:\n @staticmethod\n def GetDescriptor() -> Servi... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\service.pyi | service.pyi | Other | 1,371 | 0.85 | 0.410256 | 0 | vue-tools | 485 | 2024-06-07T03:31:27.786139 | Apache-2.0 | false | 9a358352541ed8f2d6de4a7a65e31bb5 |
"""\n@generated by mypy-protobuf. Do not edit manually!\nisort:skip_file\n"""\nfrom google.protobuf.descriptor import (\n Descriptor as google___protobuf___descriptor___Descriptor,\n FileDescriptor as google___protobuf___descriptor___FileDescriptor,\n)\n\nfrom google.protobuf.message import (\n Message as goo... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\source_context_pb2.pyi | source_context_pb2.pyi | Other | 1,097 | 0.85 | 0.073171 | 0.03125 | awesome-app | 259 | 2024-07-15T06:34:08.008822 | Apache-2.0 | false | 73b1f31d339000461d269678daa5dce0 |
"""\n@generated by mypy-protobuf. Do not edit manually!\nisort:skip_file\n"""\nfrom google.protobuf.descriptor import (\n Descriptor as google___protobuf___descriptor___Descriptor,\n EnumDescriptor as google___protobuf___descriptor___EnumDescriptor,\n FileDescriptor as google___protobuf___descriptor___FileDes... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\struct_pb2.pyi | struct_pb2.pyi | Other | 5,358 | 0.85 | 0.166667 | 0.039216 | react-lib | 352 | 2024-03-08T15:28:16.373429 | MIT | false | 2fcff698ead4a50f3d8e1ed085473b20 |
from typing import Dict, Iterable, Type, Union\n\nfrom google.protobuf.descriptor import Descriptor, EnumDescriptor, FileDescriptor, ServiceDescriptor\nfrom google.protobuf.message import Message\nfrom google.protobuf.message_factory import MessageFactory\n\nclass SymbolDatabase(MessageFactory):\n def RegisterMessag... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\symbol_database.pyi | symbol_database.pyi | Other | 912 | 0.85 | 0.5625 | 0 | react-lib | 361 | 2025-01-05T07:24:50.149925 | GPL-3.0 | false | 233023d428483cfce7f87a42e8171be6 |
"""\n@generated by mypy-protobuf. Do not edit manually!\nisort:skip_file\n"""\nfrom google.protobuf.descriptor import (\n Descriptor as google___protobuf___descriptor___Descriptor,\n FileDescriptor as google___protobuf___descriptor___FileDescriptor,\n)\n\nfrom google.protobuf.internal.well_known_types import (\n... | .venv\Lib\site-packages\jedi\third_party\typeshed\third_party\2and3\google\protobuf\timestamp_pb2.pyi | timestamp_pb2.pyi | Other | 1,354 | 0.85 | 0.065217 | 0.027778 | node-utils | 26 | 2023-10-01T19:18:40.535983 | MIT | false | c36afa6d867524ed8f084b13eda8dac8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.