id
int64
0
458k
file_name
stringlengths
4
119
file_path
stringlengths
14
227
content
stringlengths
24
9.96M
size
int64
24
9.96M
language
stringclasses
1 value
extension
stringclasses
14 values
total_lines
int64
1
219k
avg_line_length
float64
2.52
4.63M
max_line_length
int64
5
9.91M
alphanum_fraction
float64
0
1
repo_name
stringlengths
7
101
repo_stars
int64
100
139k
repo_forks
int64
0
26.4k
repo_open_issues
int64
0
2.27k
repo_license
stringclasses
12 values
repo_extraction_date
stringclasses
433 values
28,600
pkcs12.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/serialization/pkcs12.pyi
from typing import Any, List, Optional, Tuple, Union from cryptography.hazmat.primitives.asymmetric.dsa import DSAPrivateKeyWithSerialization from cryptography.hazmat.primitives.asymmetric.ec import EllipticCurvePrivateKeyWithSerialization from cryptography.hazmat.primitives.asymmetric.rsa import RSAPrivateKeyWithSeri...
933
Python
.py
16
55.6875
121
0.830601
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,601
algorithms.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/algorithms.pyi
from typing import FrozenSet from cryptography.hazmat.primitives.ciphers import BlockCipherAlgorithm, CipherAlgorithm from cryptography.hazmat.primitives.ciphers.modes import ModeWithNonce class AES(BlockCipherAlgorithm, CipherAlgorithm): def __init__(self, key: bytes) -> None: ... block_size: int = ... n...
2,245
Python
.py
66
29.590909
88
0.612264
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,602
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/__init__.pyi
from abc import ABCMeta, abstractmethod from typing import Optional from cryptography.hazmat.backends.interfaces import CipherBackend from cryptography.hazmat.primitives.ciphers.modes import Mode class AEADCipherContext(metaclass=ABCMeta): @abstractmethod def authenticate_additional_data(self, data: bytes) ->...
1,363
Python
.py
36
33.861111
125
0.723275
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,603
modes.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/modes.pyi
from abc import ABCMeta, abstractmethod from typing import Optional from cryptography.hazmat.primitives.ciphers import CipherAlgorithm class Mode(metaclass=ABCMeta): @property @abstractmethod def name(self) -> str: ... @abstractmethod def validate_for_algorithm(self, algorithm: CipherAlgorithm) ->...
3,089
Python
.py
80
34.2375
118
0.683139
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,604
aead.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/aead.pyi
from typing import Optional class AESCCM(object): def __init__(self, key: bytes, tag_length: Optional[int]) -> None: ... def decrypt(self, nonce: bytes, data: bytes, associated_data: Optional[bytes]) -> bytes: ... def encrypt(self, nonce: bytes, data: bytes, associated_data: Optional[bytes]) -> bytes: ... ...
1,065
Python
.py
19
51.736842
96
0.658677
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,605
totp.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/totp.pyi
from typing import Optional from cryptography.hazmat.backends.interfaces import HMACBackend from cryptography.hazmat.primitives.hashes import HashAlgorithm class TOTP(object): def __init__( self, key: bytes, length: int, algorithm: HashAlgorithm, time_step: int, bac...
585
Python
.py
16
30.6875
88
0.654321
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,606
hotp.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/hotp.pyi
from typing import Optional from cryptography.hazmat.backends.interfaces import HMACBackend from cryptography.hazmat.primitives.hashes import HashAlgorithm class HOTP(object): def __init__( self, key: bytes, length: int, algorithm: HashAlgorithm, backend: HMACBackend, enforce_key_length: bool = ... ):...
540
Python
.py
10
50
117
0.712121
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,607
hkdf.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/hkdf.pyi
from typing import Optional from cryptography.hazmat.backends.interfaces import HMACBackend from cryptography.hazmat.primitives.hashes import HashAlgorithm from cryptography.hazmat.primitives.kdf import KeyDerivationFunction class HKDF(KeyDerivationFunction): def __init__( self, algorithm: HashAlg...
902
Python
.py
19
42.315789
127
0.703409
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,608
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/__init__.pyi
from abc import ABCMeta, abstractmethod class KeyDerivationFunction(metaclass=ABCMeta): @abstractmethod def derive(self, key_material: bytes) -> bytes: ... @abstractmethod def verify(self, key_material: bytes, expected_key: bytes) -> None: ...
261
Python
.py
6
39.666667
75
0.73622
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,609
kbkdf.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/kbkdf.pyi
from enum import Enum from typing import Optional from cryptography.hazmat.backends.interfaces import HMACBackend from cryptography.hazmat.primitives.hashes import HashAlgorithm from cryptography.hazmat.primitives.kdf import KeyDerivationFunction class Mode(Enum): CounterMode: str class CounterLocation(Enum): ...
867
Python
.py
26
27.730769
75
0.696535
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,610
concatkdf.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/concatkdf.pyi
from typing import Optional from cryptography.hazmat.backends.interfaces import HashBackend, HMACBackend from cryptography.hazmat.primitives.hashes import HashAlgorithm from cryptography.hazmat.primitives.kdf import KeyDerivationFunction class ConcatKDFHash(KeyDerivationFunction): def __init__( self, algo...
951
Python
.py
21
39.952381
117
0.703344
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,611
scrypt.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/scrypt.pyi
from typing import Optional from cryptography.hazmat.backends.interfaces import ScryptBackend from cryptography.hazmat.primitives.kdf import KeyDerivationFunction class Scrypt(KeyDerivationFunction): def __init__(self, salt: bytes, length: int, n: int, r: int, p: int, backend: Optional[ScryptBackend] = ...): ... ...
452
Python
.py
7
61.571429
117
0.742664
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,612
x963kdf.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/x963kdf.pyi
from typing import Optional from cryptography.hazmat.backends.interfaces import HashBackend from cryptography.hazmat.primitives.hashes import HashAlgorithm from cryptography.hazmat.primitives.kdf import KeyDerivationFunction class X963KDF(KeyDerivationFunction): def __init__( self, algorithm: HashAlgorith...
545
Python
.py
10
50.9
118
0.763602
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,613
pbkdf2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/pbkdf2.pyi
from typing import Optional from cryptography.hazmat.backends.interfaces import PBKDF2HMACBackend from cryptography.hazmat.primitives.hashes import HashAlgorithm from cryptography.hazmat.primitives.kdf import KeyDerivationFunction class PBKDF2HMAC(KeyDerivationFunction): def __init__( self, algorithm: Has...
561
Python
.py
10
52.5
125
0.766849
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,614
x448.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/x448.pyi
from abc import ABCMeta, abstractmethod from cryptography.hazmat.primitives.serialization import Encoding, KeySerializationEncryption, PrivateFormat, PublicFormat class X448PrivateKey(metaclass=ABCMeta): @classmethod def from_private_bytes(cls, data: bytes) -> X448PrivateKey: ... @classmethod def gene...
905
Python
.py
20
40.7
122
0.741497
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,615
padding.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/padding.pyi
from abc import ABCMeta, abstractmethod from typing import ClassVar, Optional, Union from cryptography.hazmat.primitives.hashes import HashAlgorithm class AsymmetricPadding(metaclass=ABCMeta): @property @abstractmethod def name(self) -> str: ... class MGF1(object): def __init__(self, algorithm: HashA...
787
Python
.py
21
33.714286
96
0.7
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,616
utils.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/utils.pyi
from typing import Tuple from cryptography.hazmat.primitives.hashes import HashAlgorithm def decode_dss_signature(signature: bytes) -> Tuple[int, int]: ... def encode_dss_signature(r: int, s: int) -> bytes: ... class Prehashed(object): _algorithm: HashAlgorithm # undocumented _digest_size: int # undocument...
406
Python
.py
9
42
66
0.728426
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,617
ed448.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ed448.pyi
from abc import ABCMeta, abstractmethod from cryptography.hazmat.primitives.serialization import Encoding, KeySerializationEncryption, PrivateFormat, PublicFormat class Ed448PrivateKey(metaclass=ABCMeta): @classmethod def generate(cls) -> Ed448PrivateKey: ... @classmethod def from_private_bytes(cls, d...
973
Python
.py
22
39.636364
122
0.731013
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,618
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/__init__.pyi
from typing import Any def __getattr__(name: str) -> Any: ...
63
Python
.py
2
30
38
0.65
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,619
rsa.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/rsa.pyi
from abc import ABCMeta, abstractmethod from typing import Optional, Tuple, Union from cryptography.hazmat.backends.interfaces import RSABackend from cryptography.hazmat.primitives.asymmetric import AsymmetricVerificationContext from cryptography.hazmat.primitives.asymmetric.padding import AsymmetricPadding from crypt...
3,288
Python
.py
75
39.64
126
0.71014
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,620
x25519.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/x25519.pyi
from abc import ABCMeta, abstractmethod from cryptography.hazmat.primitives.serialization import Encoding, KeySerializationEncryption, PrivateFormat, PublicFormat class X25519PrivateKey(metaclass=ABCMeta): @classmethod def from_private_bytes(cls, data: bytes) -> X25519PrivateKey: ... @classmethod def ...
919
Python
.py
20
41.4
122
0.745536
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,621
ed25519.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ed25519.pyi
from abc import ABCMeta, abstractmethod from cryptography.hazmat.primitives.serialization import Encoding, KeySerializationEncryption, PrivateFormat, PublicFormat class Ed25519PrivateKey(metaclass=ABCMeta): @classmethod def generate(cls) -> Ed25519PrivateKey: ... @classmethod def from_private_bytes(cl...
985
Python
.py
22
40.181818
122
0.734375
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,622
dh.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/dh.pyi
from abc import ABCMeta, abstractmethod from typing import Optional from cryptography.hazmat.backends.interfaces import DHBackend from cryptography.hazmat.primitives.serialization import ( Encoding, KeySerializationEncryption, ParameterFormat, PrivateFormat, PublicFormat, ) class DHParameters(meta...
2,651
Python
.py
68
34.647059
111
0.702955
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,623
ec.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ec.pyi
from abc import ABCMeta, abstractmethod from typing import ClassVar, Optional, Union from cryptography.hazmat.backends.interfaces import EllipticCurveBackend from cryptography.hazmat.primitives.asymmetric import AsymmetricVerificationContext from cryptography.hazmat.primitives.asymmetric.utils import Prehashed from cr...
6,340
Python
.py
164
34.439024
125
0.723958
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,624
dsa.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/dsa.pyi
from abc import ABCMeta, abstractmethod from typing import Optional, Union from cryptography.hazmat.backends.interfaces import DSABackend from cryptography.hazmat.primitives.asymmetric import AsymmetricVerificationContext from cryptography.hazmat.primitives.asymmetric.utils import Prehashed from cryptography.hazmat.pr...
2,965
Python
.py
68
39.382353
122
0.726958
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,625
oid.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/x509/oid.pyi
from typing import Dict, Optional from cryptography.hazmat.primitives.hashes import HashAlgorithm from cryptography.x509 import ObjectIdentifier class ExtensionOID: SUBJECT_DIRECTORY_ATTRIBUTES: ObjectIdentifier = ... SUBJECT_KEY_IDENTIFIER: ObjectIdentifier = ... KEY_USAGE: ObjectIdentifier = ... SUB...
4,153
Python
.py
95
39.147368
72
0.712132
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,626
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/x509/__init__.pyi
import datetime from abc import ABCMeta, abstractmethod from enum import Enum from ipaddress import IPv4Address, IPv4Network, IPv6Address, IPv6Network from typing import Any, ClassVar, Generator, Generic, Iterable, List, Optional, Sequence, Text, Type, TypeVar, Union from cryptography.hazmat.backends.interfaces import...
17,734
Python
.py
372
42.844086
124
0.729236
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,627
extensions.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/x509/extensions.pyi
from typing import Any, Iterator from cryptography.x509 import GeneralName, ObjectIdentifier class Extension: value: Any = ... class GeneralNames: def __iter__(self) -> Iterator[GeneralName]: ... class DistributionPoint: full_name: GeneralNames = ... class CRLDistributionPoints: def __iter__(self) ...
557
Python
.py
15
33.8
59
0.738318
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,628
records.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/geoip2/records.pyi
from typing import Any, Mapping, Optional, Sequence, Text, Tuple from geoip2.mixins import SimpleEquality _Locales = Optional[Sequence[Text]] _Names = Mapping[Text, Text] class Record(SimpleEquality): def __init__(self, **kwargs: Any) -> None: ... def __setattr__(self, name: Text, value: Any) -> None: ... c...
2,071
Python
.py
69
25.73913
88
0.681087
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,629
models.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/geoip2/models.pyi
from typing import Any, Mapping, Optional, Sequence, Text from geoip2 import records from geoip2.mixins import SimpleEquality _Locales = Optional[Sequence[Text]] _RawResponse = Mapping[Text, Mapping[Text, Any]] class Country(SimpleEquality): continent: records.Continent country: records.Country registere...
1,867
Python
.py
52
31.865385
88
0.708587
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,630
errors.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/geoip2/errors.pyi
from typing import Optional, Text class GeoIP2Error(RuntimeError): ... class AddressNotFoundError(GeoIP2Error): ... class AuthenticationError(GeoIP2Error): ... class HTTPError(GeoIP2Error): http_status: Optional[int] uri: Optional[Text] def __init__(self, message: Text, http_status: Optional[int] = ..., u...
494
Python
.py
11
42.545455
111
0.74375
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,631
database.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/geoip2/database.pyi
from types import TracebackType from typing import Optional, Sequence, Text, Type from geoip2.models import ASN, ISP, AnonymousIP, City, ConnectionType, Country, Domain, Enterprise from maxminddb.reader import Metadata _Locales = Optional[Sequence[Text]] class Reader: def __init__(self, filename: Text, locales: ...
1,133
Python
.py
24
42.416667
98
0.632911
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,632
mixins.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/geoip2/mixins.pyi
class SimpleEquality: def __eq__(self, other: object) -> bool: ... def __ne__(self, other: object) -> bool: ...
120
Python
.py
3
36.333333
48
0.57265
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,633
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/atomicwrites/__init__.pyi
from _typeshed import AnyPath from typing import IO, Any, AnyStr, Callable, ContextManager, Optional, Text, Type def replace_atomic(src: AnyStr, dst: AnyStr) -> None: ... def move_atomic(src: AnyStr, dst: AnyStr) -> None: ... class AtomicWriter(object): def __init__(self, path: AnyPath, mode: Text = ..., overwrit...
850
Python
.py
13
62
123
0.635492
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,634
source_context_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/source_context_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor, ) from google.protobuf.message import ( Message as google___prot...
1,097
Python
.py
32
31
105
0.699811
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,635
reflection.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/reflection.pyi
class GeneratedProtocolMessageType(type): def __new__(cls, name, bases, dictionary): ... def __init__(self, name, bases, dictionary) -> None: ... def ParseMessage(descriptor, byte_str): ... def MakeClass(descriptor): ...
230
Python
.py
5
43.2
60
0.683036
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,636
duration_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/duration_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor, ) from google.protobuf.internal.well_known_types import ( Durati...
1,348
Python
.py
36
34.055556
119
0.697389
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,637
field_mask_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/field_mask_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor, ) from google.protobuf.internal.containers import ( RepeatedScal...
1,558
Python
.py
39
36.717949
116
0.724138
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,638
descriptor_pool.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor_pool.pyi
from typing import Any, Optional class DescriptorPool: def __new__(cls, descriptor_db: Optional[Any] = ...): ... def __init__(self, descriptor_db: Optional[Any] = ...) -> None: ... def Add(self, file_desc_proto): ... def AddSerializedFile(self, serialized_file_desc_proto): ... def AddDescriptor(sel...
744
Python
.py
16
42.125
71
0.665289
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,639
wrappers_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/wrappers_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor, ) from google.protobuf.message import ( Message as google___prot...
4,287
Python
.py
104
36.288462
97
0.638047
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,640
message_factory.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/message_factory.pyi
from typing import Any, Dict, Iterable, Optional, Type from google.protobuf.descriptor import Descriptor from google.protobuf.descriptor_pb2 import FileDescriptorProto from google.protobuf.descriptor_pool import DescriptorPool from google.protobuf.message import Message class MessageFactory: pool: Any def __i...
631
Python
.py
11
54.636364
92
0.763371
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,641
descriptor.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor.pyi
from typing import Any from .descriptor_pb2 import ( EnumOptions, EnumValueOptions, FieldOptions, FileOptions, MessageOptions, MethodOptions, OneofOptions, ServiceOptions, ) from .message import Message class Error(Exception): ... class TypeTransformationError(Error): ... class Descri...
7,843
Python
.py
316
18.281646
118
0.575802
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,642
struct_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/struct_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, EnumDescriptor as google___protobuf___descriptor___EnumDescriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor...
5,358
Python
.py
102
47.490196
283
0.676988
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,643
any_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/any_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor, ) from google.protobuf.internal.well_known_types import ( Any as...
1,353
Python
.py
37
33.135135
121
0.687596
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,644
type_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/type_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.any_pb2 import ( Any as google___protobuf___any_pb2___Any, ) from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, EnumDescriptor as google___protobuf___descriptor_...
11,139
Python
.py
204
49.04902
317
0.676206
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,645
descriptor_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, EnumDescriptor as google___protobuf___descriptor___EnumDescriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor...
43,146
Python
.py
628
62.082803
961
0.6845
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,646
timestamp_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/timestamp_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor, ) from google.protobuf.internal.well_known_types import ( Timest...
1,354
Python
.py
36
34.222222
119
0.698777
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,647
service.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/service.pyi
from concurrent.futures import Future from typing import Callable, Optional, Text, Type from google.protobuf.descriptor import MethodDescriptor, ServiceDescriptor from google.protobuf.message import Message class RpcException(Exception): ... class Service: @staticmethod def GetDescriptor() -> ServiceDescript...
1,371
Python
.py
34
34.823529
89
0.683183
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,648
symbol_database.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/symbol_database.pyi
from typing import Dict, Iterable, Type, Union from google.protobuf.descriptor import Descriptor, EnumDescriptor, FileDescriptor, ServiceDescriptor from google.protobuf.message import Message from google.protobuf.message_factory import MessageFactory class SymbolDatabase(MessageFactory): def RegisterMessage(self,...
912
Python
.py
13
66.769231
107
0.766741
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,649
message.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/message.pyi
import sys from typing import Any, ByteString, Sequence, Tuple, Type, TypeVar, Union, overload from .descriptor import Descriptor, FieldDescriptor from .internal.extension_dict import _ExtensionDict, _ExtensionFieldDescriptor class Error(Exception): ... class DecodeError(Error): ... class EncodeError(Error): ... _M ...
2,522
Python
.py
51
45.215686
99
0.676399
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,650
json_format.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/json_format.pyi
from typing import Any, Dict, Text, TypeVar, Union from google.protobuf.message import Message _MessageVar = TypeVar("_MessageVar", bound=Message) class Error(Exception): ... class ParseError(Error): ... class SerializeToJsonError(Error): ... def MessageToJson( message: Message, including_default_value_fiel...
903
Python
.py
22
38.045455
112
0.673888
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,651
api_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/api_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor, ) from google.protobuf.internal.containers import ( RepeatedComp...
4,881
Python
.py
93
47.55914
305
0.675477
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,652
empty_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/empty_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor, ) from google.protobuf.message import ( Message as google___prot...
603
Python
.py
17
32.529412
70
0.712565
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,653
wire_format.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/wire_format.pyi
from typing import Any TAG_TYPE_BITS: Any TAG_TYPE_MASK: Any WIRETYPE_VARINT: Any WIRETYPE_FIXED64: Any WIRETYPE_LENGTH_DELIMITED: Any WIRETYPE_START_GROUP: Any WIRETYPE_END_GROUP: Any WIRETYPE_FIXED32: Any INT32_MAX: Any INT32_MIN: Any UINT32_MAX: Any INT64_MAX: Any INT64_MIN: Any UINT64_MAX: Any FORMAT_UINT32_LITTLE...
1,554
Python
.py
46
32.695652
50
0.770612
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,654
encoder.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/encoder.pyi
from typing import Any Int32Sizer: Any UInt32Sizer: Any SInt32Sizer: Any Fixed32Sizer: Any Fixed64Sizer: Any BoolSizer: Any def StringSizer(field_number, is_repeated, is_packed): ... def BytesSizer(field_number, is_repeated, is_packed): ... def GroupSizer(field_number, is_repeated, is_packed): ... def MessageSizer(fi...
1,045
Python
.py
30
33.7
61
0.78635
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,655
extension_dict.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/extension_dict.pyi
from typing import Any, Generic, Iterator, TypeVar, overload from google.protobuf.descriptor import FieldDescriptor from google.protobuf.message import Message _ContainerMessageT = TypeVar("_ContainerMessageT", bound=Message) _ExtenderMessageT = TypeVar("_ExtenderMessageT", bound=Message) class _ExtensionFieldDescri...
1,795
Python
.py
32
51.59375
123
0.723707
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,656
containers.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/containers.pyi
from typing import ( Any, Callable, Iterable, Iterator, List, Mapping as Mapping, MutableMapping as MutableMapping, Optional, Sequence, TypeVar, Union, overload, ) from google.protobuf.descriptor import Descriptor from google.protobuf.internal.message_listener import Mes...
3,653
Python
.py
83
39.60241
102
0.577884
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,657
enum_type_wrapper.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/enum_type_wrapper.pyi
from typing import Generic, List, Tuple, TypeVar from google.protobuf.descriptor import EnumDescriptor _V = TypeVar("_V", bound=int) # Expose a generic version so that those using mypy-protobuf # can get autogenerated NewType wrapper around the int values class _EnumTypeWrapper(Generic[_V]): DESCRIPTOR: EnumDesc...
650
Python
.py
14
43.142857
62
0.685127
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,658
well_known_types.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/well_known_types.pyi
from datetime import datetime, timedelta from typing import Any as tAny, Dict, Optional, Text, Type class Error(Exception): ... class ParseError(Error): ... class Any: type_url: tAny = ... value: tAny = ... def Pack(self, msg: tAny, type_url_prefix: bytes = ..., deterministic: Optional[tAny] = ...) -> Non...
3,756
Python
.py
85
39.6
119
0.611141
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,659
decoder.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/decoder.pyi
from typing import Any def ReadTag(buffer, pos): ... def EnumDecoder(field_number, is_repeated, is_packed, key, new_default): ... Int32Decoder: Any Int64Decoder: Any UInt32Decoder: Any UInt64Decoder: Any SInt32Decoder: Any SInt64Decoder: Any Fixed32Decoder: Any Fixed64Decoder: Any SFixed32Decoder: Any SFixed64Decoder...
860
Python
.py
24
34.583333
79
0.792771
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,660
message_listener.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/message_listener.pyi
class MessageListener(object): def Modified(self) -> None: ... class NullMessageListener(MessageListener): def Modified(self) -> None: ...
148
Python
.py
4
33.75
43
0.72028
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,661
plugin_pb2.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/google/protobuf/compiler/plugin_pb2.pyi
""" @generated by mypy-protobuf. Do not edit manually! isort:skip_file """ from google.protobuf.descriptor import ( Descriptor as google___protobuf___descriptor___Descriptor, EnumDescriptor as google___protobuf___descriptor___EnumDescriptor, FileDescriptor as google___protobuf___descriptor___FileDescriptor...
6,548
Python
.py
113
52.318584
213
0.689021
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,662
client.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/redis/client.pyi
from datetime import timedelta from typing import ( Any, Callable, Dict, Generic, Iterable, Iterator, List, Mapping, Optional, Sequence, Set, Text, Tuple, TypeVar, Union, overload, ) from typing_extensions import Literal from .connection import Connection...
26,034
Python
.py
619
35.801292
129
0.562576
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,663
utils.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/redis/utils.pyi
from typing import Any HIREDIS_AVAILABLE: Any def from_url(url, db=..., **kwargs): ... def pipeline(redis_obj): ... class dummy: ...
136
Python
.py
5
25.6
40
0.6875
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,664
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/redis/__init__.pyi
from . import client, connection, exceptions, utils Redis = client.Redis StrictRedis = client.StrictRedis BlockingConnectionPool = connection.BlockingConnectionPool ConnectionPool = connection.ConnectionPool Connection = connection.Connection SSLConnection = connection.SSLConnection UnixDomainSocketConnection = connec...
829
Python
.py
20
40.4
66
0.891089
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,665
connection.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/redis/connection.pyi
from typing import Any, List, Mapping, Optional, Text, Tuple, Type, Union ssl_available: Any hiredis_version: Any HIREDIS_SUPPORTS_CALLABLE_ERRORS: Any HIREDIS_SUPPORTS_BYTE_BUFFER: Any msg: Any HIREDIS_USE_BYTE_BUFFER: Any SYM_STAR: Any SYM_DOLLAR: Any SYM_CRLF: Any SYM_EMPTY: Any SERVER_CLOSED_CONNECTION_ERROR: Any ...
5,595
Python
.py
164
28.792683
129
0.607789
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,666
exceptions.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/redis/exceptions.pyi
class RedisError(Exception): ... def __unicode__(self): ... class AuthenticationError(RedisError): ... class ConnectionError(RedisError): ... class TimeoutError(RedisError): ... class BusyLoadingError(ConnectionError): ... class InvalidResponse(RedisError): ... class ResponseError(RedisError): ... class DataError(Red...
569
Python
.py
15
36.8
44
0.771739
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,667
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/characteristic/__init__.pyi
from typing import Any, AnyStr, Callable, Dict, Optional, Sequence, Type, TypeVar, Union def with_repr(attrs: Sequence[Union[AnyStr, Attribute]]) -> Callable[..., Any]: ... def with_cmp(attrs: Sequence[Union[AnyStr, Attribute]]) -> Callable[..., Any]: ... def with_init(attrs: Sequence[Union[AnyStr, Attribute]]) -> Cal...
1,330
Python
.py
30
39.3
88
0.609266
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,668
nmap.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/nmap/nmap.pyi
from typing import Any, Callable, Dict, Iterable, Iterator, List, Optional, Text, Tuple, TypeVar from typing_extensions import TypedDict _T = TypeVar("_T") _Callback = Callable[[str, _Result], Any] class _Result(TypedDict): nmap: _ResultNmap scan: Dict[str, PortScannerHostDict] class _ResultNmap(TypedDict): ...
3,953
Python
.py
105
32.790476
129
0.60402
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,669
visitor.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/visitor.pyi
class NodeVisitor: def get_visitor(self, node): ... def visit(self, node, *args, **kwargs): ... def generic_visit(self, node, *args, **kwargs): ... class NodeTransformer(NodeVisitor): def generic_visit(self, node, *args, **kwargs): ... def visit_list(self, node, *args, **kwargs): ...
306
Python
.py
7
39.714286
55
0.637584
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,670
bccache.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/bccache.pyi
from typing import Any, Optional marshal_dump: Any marshal_load: Any bc_version: int bc_magic: Any class Bucket: environment: Any key: Any checksum: Any def __init__(self, environment, key, checksum) -> None: ... code: Any def reset(self): ... def load_bytecode(self, f): ... def write_...
1,396
Python
.py
39
31.589744
128
0.644231
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,671
loaders.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/loaders.pyi
import sys from types import ModuleType from typing import Any, Callable, Iterable, List, Optional, Text, Tuple, Union from .environment import Environment if sys.version_info >= (3, 7): from os import PathLike _SearchPath = Union[Text, PathLike[str], Iterable[Union[Text, PathLike[str]]]] else: _SearchPa...
2,923
Python
.py
67
39.328358
112
0.660218
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,672
utils.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/utils.pyi
from _typeshed import AnyPath from typing import IO, Any, Callable, Iterable, Optional, Protocol, Text, TypeVar, Union from typing_extensions import Literal from markupsafe import Markup as Markup, escape as escape, soft_unicode as soft_unicode missing: Any internal_code: Any concat: Any _CallableT = TypeVar("_Calla...
2,957
Python
.py
77
34.883117
115
0.626132
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,673
optimizer.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/optimizer.pyi
from typing import Any from jinja2.visitor import NodeTransformer def optimize(node, environment): ... class Optimizer(NodeTransformer): environment: Any def __init__(self, environment) -> None: ... def visit_If(self, node): ... def fold(self, node): ... visit_Add: Any visit_Sub: Any visi...
661
Python
.py
27
19.962963
48
0.66561
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,674
nodes.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/nodes.pyi
import typing from typing import Any, Optional class Impossible(Exception): ... class NodeType(type): def __new__(cls, name, bases, d): ... class EvalContext: environment: Any autoescape: Any volatile: bool def __init__(self, environment, template_name: Optional[Any] = ...) -> None: ... def s...
5,271
Python
.py
189
24.021164
102
0.647329
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,675
debug.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/debug.pyi
from typing import Any, Optional tproxy: Any raise_helper: str class TracebackFrameProxy: tb: Any def __init__(self, tb) -> None: ... @property def tb_next(self): ... def set_next(self, next): ... @property def is_jinja_frame(self): ... def __getattr__(self, name): ... def make_frame_...
1,018
Python
.py
31
29.064516
67
0.630989
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,676
ext.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/ext.pyi
from typing import Any, Optional GETTEXT_FUNCTIONS: Any class ExtensionRegistry(type): def __new__(cls, name, bases, d): ... class Extension: tags: Any priority: int environment: Any def __init__(self, environment) -> None: ... def bind(self, environment): ... def preprocess(self, source,...
1,684
Python
.py
54
26.703704
86
0.635352
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,677
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/__init__.pyi
from jinja2.bccache import ( BytecodeCache as BytecodeCache, FileSystemBytecodeCache as FileSystemBytecodeCache, MemcachedBytecodeCache as MemcachedBytecodeCache, ) from jinja2.environment import Environment as Environment, Template as Template from jinja2.exceptions import ( TemplateAssertionError as T...
1,529
Python
.py
45
30.133333
79
0.811321
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,678
parser.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/parser.pyi
from typing import Any, Optional class Parser: environment: Any stream: Any name: Any filename: Any closed: bool extensions: Any def __init__( self, environment, source, name: Optional[Any] = ..., filename: Optional[Any] = ..., state: Optional[Any] = ... ) -> None: ... def f...
2,576
Python
.py
67
33.19403
123
0.577751
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,679
tests.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/tests.pyi
from typing import Any number_re: Any regex_type: Any test_callable: Any def test_odd(value): ... def test_even(value): ... def test_divisibleby(value, num): ... def test_defined(value): ... def test_undefined(value): ... def test_none(value): ... def test_lower(value): ... def test_upper(value): ... def test_string(...
561
Python
.py
21
25.571429
37
0.6946
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,680
meta.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/meta.pyi
from typing import Any from jinja2.compiler import CodeGenerator class TrackingCodeGenerator(CodeGenerator): undeclared_identifiers: Any def __init__(self, environment) -> None: ... def write(self, x): ... def pull_locals(self, frame): ... def find_undeclared_variables(ast): ... def find_referenced_t...
339
Python
.py
9
34.555556
48
0.727829
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,681
_stringdefs.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/_stringdefs.pyi
from typing import Any Cc: str Cf: str Cn: str Co: str Cs: Any Ll: str Lm: str Lo: str Lt: str Lu: str Mc: str Me: str Mn: str Nd: str Nl: str No: str Pc: str Pd: str Pe: str Pf: str Pi: str Po: str Ps: str Sc: str Sk: str Sm: str So: str Zl: str Zp: str Zs: str cats: Any def combine(*args): ... xid_start: str xid_c...
360
Python
.py
36
8.888889
25
0.721875
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,682
filters.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/filters.pyi
from typing import Any, NamedTuple, Optional def contextfilter(f): ... def evalcontextfilter(f): ... def environmentfilter(f): ... def make_attrgetter(environment, attribute): ... def do_forceescape(value): ... def do_urlencode(value): ... def do_replace(eval_ctx, s, old, new, count: Optional[Any] = ...): ... def do_u...
2,425
Python
.py
52
45.403846
123
0.624314
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,683
sandbox.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/sandbox.pyi
from typing import Any from jinja2.environment import Environment MAX_RANGE: int UNSAFE_FUNCTION_ATTRIBUTES: Any UNSAFE_METHOD_ATTRIBUTES: Any UNSAFE_GENERATOR_ATTRIBUTES: Any def safe_range(*args): ... def unsafe(f): ... def is_internal_attribute(obj, attr): ... def modifies_known_mutable(obj, attr): ... class San...
1,146
Python
.py
30
34.633333
61
0.69577
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,684
runtime.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/runtime.pyi
from typing import Any, Dict, Optional, Text, Union from jinja2.environment import Environment from jinja2.exceptions import TemplateNotFound as TemplateNotFound, TemplateRuntimeError as TemplateRuntimeError from jinja2.utils import Markup as Markup, concat as concat, escape as escape, missing as missing to_string: A...
3,463
Python
.py
119
24.563025
121
0.578205
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,685
lexer.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/lexer.pyi
from typing import Any, Optional, Tuple whitespace_re: Any string_re: Any integer_re: Any name_re: Any float_re: Any newline_re: Any TOKEN_ADD: Any TOKEN_ASSIGN: Any TOKEN_COLON: Any TOKEN_COMMA: Any TOKEN_DIV: Any TOKEN_DOT: Any TOKEN_EQ: Any TOKEN_FLOORDIV: Any TOKEN_GT: Any TOKEN_GTEQ: Any TOKEN_LBRACE: Any TOKEN_L...
2,764
Python
.py
109
22.889908
121
0.680015
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,686
environment.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/environment.pyi
import sys from typing import Any, Callable, Dict, Iterator, List, Optional, Sequence, Text, Type, Union from .bccache import BytecodeCache from .loaders import BaseLoader from .runtime import Context, Undefined if sys.version_info >= (3, 6): from typing import AsyncIterator, Awaitable def get_spontaneous_enviro...
8,493
Python
.py
216
32.893519
123
0.581086
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,687
defaults.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/defaults.pyi
from typing import Any, Dict, Optional from jinja2.filters import FILTERS from jinja2.tests import TESTS DEFAULT_FILTERS = FILTERS DEFAULT_TESTS = TESTS BLOCK_START_STRING: str BLOCK_END_STRING: str VARIABLE_START_STRING: str VARIABLE_END_STRING: str COMMENT_START_STRING: str COMMENT_END_STRING: str LINE_STATEMENT_P...
532
Python
.py
19
26.842105
38
0.829412
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,688
compiler.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/compiler.pyi
from keyword import iskeyword as is_python_keyword from typing import Any, Optional from jinja2.visitor import NodeVisitor operators: Any dict_item_iter: str unoptimize_before_dead_code: bool def generate(node, environment, name, filename, stream: Optional[Any] = ..., defer_init: bool = ...): ... def has_safe_repr(...
6,363
Python
.py
165
33.90303
117
0.628678
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,689
_compat.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/_compat.pyi
import sys from typing import Any, Optional if sys.version_info >= (3,): from urllib.parse import quote_from_bytes url_quote = quote_from_bytes else: import urllib url_quote = urllib.quote PY2: Any PYPY: Any unichr: Any range_type: Any text_type: Any string_types: Any integer_types: Any iterkeys: An...
598
Python
.py
29
18.827586
52
0.763345
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,690
exceptions.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/jinja2/exceptions.pyi
from typing import Any, Optional, Text class TemplateError(Exception): def __init__(self, message: Optional[Text] = ...) -> None: ... @property def message(self): ... def __unicode__(self): ... class TemplateNotFound(IOError, LookupError, TemplateError): message: Any name: Any templates: A...
1,050
Python
.py
26
36.730769
123
0.691855
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,691
reader.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/maxminddb/reader.pyi
from ipaddress import IPv4Address, IPv6Address from types import TracebackType from typing import Any, Mapping, Optional, Sequence, Text, Tuple, Type, Union class Reader: closed: bool = ... def __init__(self, database: bytes, mode: int = ...) -> None: ... def metadata(self) -> Metadata: ... def get(sel...
1,269
Python
.py
32
34.71875
118
0.608097
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,692
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/maxminddb/__init__.pyi
from typing import Text from maxminddb import reader def open_database(database: Text, mode: int = ...) -> reader.Reader: ... def Reader(database: Text) -> reader.Reader: ...
177
Python
.py
4
42.75
72
0.725146
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,693
extension.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/maxminddb/extension.pyi
from typing import Any, Mapping, Sequence, Text from maxminddb.errors import InvalidDatabaseError as InvalidDatabaseError class Reader: closed: bool = ... def __init__(self, *args: Any, **kwargs: Any) -> None: ... def close(self, *args: Any, **kwargs: Any) -> Any: ... def get(self, *args: Any, **kwarg...
1,122
Python
.py
30
32.833333
73
0.598714
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,694
decoder.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/maxminddb/decoder.pyi
from typing import Any, Tuple class Decoder: def __init__(self, database_buffer: bytes, pointer_base: int = ..., pointer_test: bool = ...) -> None: ... def decode(self, offset: int) -> Tuple[Any, int]: ...
215
Python
.py
4
50.5
110
0.628571
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,695
const.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/maxminddb/const.pyi
MODE_AUTO: int = ... MODE_MMAP_EXT: int = ... MODE_MMAP: int = ... MODE_FILE: int = ... MODE_MEMORY: int = ... MODE_FD: int = ...
130
Python
.py
6
20.666667
24
0.556452
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,696
compat.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/maxminddb/compat.pyi
from typing import Any def compat_ip_address(address: object) -> Any: ... def int_from_byte(x: int) -> int: ... def int_from_bytes(x: bytes) -> int: ... def byte_from_int(x: int) -> bytes: ...
194
Python
.py
5
37.6
50
0.643617
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,697
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/datetimerange/__init__.pyi
import datetime from typing import Iterable, Optional, Union from dateutil.relativedelta import relativedelta class DateTimeRange(object): NOT_A_TIME_STR: str start_time_format: str end_time_format: str is_output_elapse: bool separator: str def __init__( self, start_datetime: O...
2,062
Python
.py
45
40.6
124
0.628784
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,698
enums.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/chardet/enums.pyi
class InputState(object): PURE_ASCII: int ESC_ASCII: int HIGH_BYTE: int class LanguageFilter(object): CHINESE_SIMPLIFIED: int CHINESE_TRADITIONAL: int JAPANESE: int KOREAN: int NON_CJK: int ALL: int CHINESE: int CJK: int class ProbingState(object): DETECTING: int FO...
710
Python
.py
34
16.441176
43
0.682563
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,699
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/chardet/__init__.pyi
import sys from typing import Any, Tuple from .universaldetector import UniversalDetector as UniversalDetector def __getattr__(name: str) -> Any: ... # incomplete if sys.version_info >= (3, 8): from typing import TypedDict else: from typing_extensions import TypedDict class _LangModelType(TypedDict): c...
667
Python
.py
21
28.047619
69
0.708268
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)