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,500
indexes.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pynamodb/indexes.pyi
from typing import Any, Optional class IndexMeta(type): def __init__(self, name, bases, attrs) -> None: ... class Index(metaclass=IndexMeta): Meta: Any def __init__(self) -> None: ... @classmethod def count(cls, hash_key, consistent_read: bool = ..., **filters) -> int: ... @classmethod def...
1,052
Python
.py
32
27.78125
80
0.638697
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,501
attributes.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pynamodb/attributes.pyi
from datetime import datetime from typing import Any, Callable, Dict, Generic, Iterable, List, Mapping, Optional, Set, Text, Type, TypeVar, Union _T = TypeVar("_T") _KT = TypeVar("_KT") _VT = TypeVar("_VT") _MT = TypeVar("_MT", bound=MapAttribute[Any, Any]) class Attribute(Generic[_T]): attr_name: Optional[Text] ...
4,342
Python
.py
100
38.44
115
0.594934
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,502
exceptions.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pynamodb/exceptions.pyi
from typing import Any, Optional, Text class PynamoDBException(Exception): msg: str cause: Any def __init__(self, msg: Optional[Text] = ..., cause: Optional[Exception] = ...) -> None: ... class PynamoDBConnectionError(PynamoDBException): ... class DeleteError(PynamoDBConnectionError): ... class QueryError...
887
Python
.py
19
44.210526
108
0.75
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,503
util.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/util.pyi
from typing import Text def pythonic(var_name: Text) -> Text: ...
67
Python
.py
2
32
41
0.71875
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,504
table.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/table.pyi
from typing import Any, Optional class TableConnection: table_name: Any connection: Any def __init__( self, table_name, region: Optional[Any] = ..., host: Optional[Any] = ..., session_cls: Optional[Any] = ..., request_timeout_seconds: Optional[Any] = ..., ...
3,825
Python
.py
107
27.859813
123
0.54318
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,505
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/__init__.pyi
from pynamodb.connection.base import Connection as Connection from pynamodb.connection.table import TableConnection as TableConnection
135
Python
.py
2
66.5
72
0.894737
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,506
base.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/base.pyi
from typing import Any, Dict, Optional, Text BOTOCORE_EXCEPTIONS: Any log: Any class MetaTable: data: Dict[Any, Any] def __init__(self, data: Dict[Any, Any]) -> None: ... @property def range_keyname(self) -> Optional[Text]: ... @property def hash_keyname(self) -> Text: ... def get_index_ha...
6,089
Python
.py
155
32.019355
118
0.573091
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,507
wsgi.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/wsgi.pyi
from _typeshed import SupportsRead from _typeshed.wsgi import InputStream, WSGIEnvironment from typing import Any, Iterable, Optional, Text from .middleware.dispatcher import DispatcherMiddleware as DispatcherMiddleware from .middleware.http_proxy import ProxyMiddleware as ProxyMiddleware from .middleware.shared_data ...
3,030
Python
.py
66
42.424242
124
0.633288
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,508
security.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/security.pyi
from typing import Any, Optional SALT_CHARS: Any DEFAULT_PBKDF2_ITERATIONS: Any def pbkdf2_hex(data, salt, iterations=..., keylen: Optional[Any] = ..., hashfunc: Optional[Any] = ...): ... def pbkdf2_bin(data, salt, iterations=..., keylen: Optional[Any] = ..., hashfunc: Optional[Any] = ...): ... def safe_str_cmp(a, b)...
524
Python
.py
10
51.2
107
0.669922
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,509
urls.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/urls.pyi
from typing import Any, NamedTuple, Optional, Text class _URLTuple(NamedTuple): scheme: Any netloc: Any path: Any query: Any fragment: Any class BaseURL(_URLTuple): def replace(self, **kwargs): ... @property def host(self): ... @property def ascii_host(self): ... @property ...
2,898
Python
.py
88
28.954545
121
0.556705
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,510
formparser.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/formparser.pyi
from _typeshed.wsgi import WSGIEnvironment from typing import ( IO, Any, Callable, Dict, Generator, Iterable, Mapping, NoReturn, Optional, Protocol, Text, Tuple, TypeVar, Union, ) from .datastructures import Headers _Dict = Any _ParseFunc = Callable[[IO[bytes], ...
3,702
Python
.py
94
34.212766
122
0.62
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,511
utils.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/utils.pyi
from typing import Any, Optional, Text, Type, TypeVar, overload from werkzeug._internal import _DictAccessorProperty from werkzeug.wrappers import Response class cached_property(property): __name__: Any __module__: Any __doc__: Any func: Any def __init__(self, func, name: Optional[Any] = ..., doc:...
1,962
Python
.py
48
38
124
0.656513
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,512
datastructures.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/datastructures.pyi
from _typeshed import SupportsWrite from typing import ( IO, Any, Callable, Container, Dict, Generic, Iterable, Iterator, List, Mapping, MutableSet, NoReturn, Optional, Text, Tuple, Type, TypeVar, Union, overload, ) _K = TypeVar("_K") _V = Typ...
15,587
Python
.py
421
32.296912
123
0.572675
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,513
http.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/http.pyi
import sys from _typeshed.wsgi import WSGIEnvironment from datetime import datetime, timedelta from typing import ( Any, Callable, Dict, Iterable, List, Mapping, Optional, SupportsInt, Text, Tuple, Type, TypeVar, Union, overload, ) from .datastructures import ( ...
5,335
Python
.py
131
37.969466
119
0.654867
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,514
useragents.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/useragents.pyi
from typing import Any, Optional class UserAgentParser: platforms: Any browsers: Any def __init__(self): ... def __call__(self, user_agent): ... class UserAgent: string: Any platform: Optional[str] browser: Optional[str] version: Optional[str] language: Optional[str] def __init...
431
Python
.py
16
22.5625
46
0.62954
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,515
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/__init__.pyi
from types import ModuleType from typing import Any from werkzeug import ( _internal, datastructures, debug, exceptions, formparser, http, local, security, serving, test, testapp, urls, useragents, utils, wrappers, wsgi, ) class module(ModuleType): d...
5,307
Python
.py
147
34.585034
72
0.839604
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,516
_reloader.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/_reloader.pyi
from typing import Any, Optional class ReloaderLoop: name: Any extra_files: Any interval: float def __init__(self, extra_files: Optional[Any] = ..., interval: float = ...): ... def run(self): ... def restart_with_reloader(self): ... def trigger_reload(self, filename): ... def log_reload...
826
Python
.py
24
30.208333
120
0.649937
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,517
local.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/local.pyi
from typing import Any, Optional def release_local(local): ... class Local: def __init__(self): ... def __iter__(self): ... def __call__(self, proxy): ... def __release_local__(self): ... def __getattr__(self, name): ... def __setattr__(self, name, value): ... def __delattr__(self, name): ...
2,315
Python
.py
95
19.568421
89
0.489391
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,518
script.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/script.pyi
from typing import Any, Optional argument_types: Any converters: Any def run(namespace: Optional[Any] = ..., action_prefix: str = ..., args: Optional[Any] = ...): ... def fail(message, code: int = ...): ... def find_actions(namespace, action_prefix): ... def print_usage(actions): ... def analyse_action(func): ... def...
768
Python
.py
22
31.818182
105
0.598118
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,519
posixemulation.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/posixemulation.pyi
from typing import Any from ._compat import to_unicode as to_unicode from .filesystem import get_filesystem_encoding as get_filesystem_encoding can_rename_open_file: Any def rename(src, dst): ...
199
Python
.py
5
38.2
74
0.806283
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,520
serving.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/serving.pyi
import sys from typing import Any, Optional if sys.version_info < (3,): from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer from SocketServer import ThreadingMixIn else: from http.server import BaseHTTPRequestHandler, HTTPServer from socketserver import ThreadingMixIn if sys.platform == "win...
4,057
Python
.py
126
27.404762
105
0.618841
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,521
filesystem.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/filesystem.pyi
from typing import Any has_likely_buggy_unicode_filesystem: Any class BrokenFilesystemWarning(RuntimeWarning, UnicodeWarning): ... def get_filesystem_encoding(): ...
169
Python
.py
4
40.5
66
0.820988
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,522
_internal.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/_internal.pyi
from typing import Any, Optional class _Missing: def __reduce__(self): ... class _DictAccessorProperty: read_only: Any name: Any default: Any load_func: Any dump_func: Any __doc__: Any def __init__( self, name, default: Optional[Any] = ..., load_func: Op...
644
Python
.py
23
22.347826
58
0.52589
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,523
testapp.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/testapp.pyi
from typing import Any from werkzeug.wrappers import BaseRequest as Request, BaseResponse as Response logo: Any TEMPLATE: Any def iter_sys_path(): ... def render_testapp(req): ... def test_app(environ, start_response): ...
226
Python
.py
7
30.857143
78
0.777778
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,524
routing.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/routing.pyi
from typing import Any, Optional, Text from werkzeug.exceptions import HTTPException def parse_converter_args(argstr): ... def parse_rule(rule): ... class RoutingException(Exception): ... class RequestRedirect(HTTPException, RoutingException): code: Any new_url: Any def __init__(self, new_url): ... ...
6,802
Python
.py
204
27.921569
126
0.599817
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,525
test.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/test.pyi
import sys from _typeshed.wsgi import WSGIEnvironment from typing import Any, Generic, Optional, Text, Tuple, Type, TypeVar, overload from typing_extensions import Literal if sys.version_info < (3,): from cookielib import CookieJar from urllib2 import Request as U2Request else: from http.cookiejar import C...
6,138
Python
.py
165
31.848485
102
0.585779
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,526
_compat.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/_compat.pyi
import sys from typing import Any, Optional, Text if sys.version_info >= (3,): from io import BytesIO as BytesIO, StringIO as StringIO NativeStringIO = StringIO else: import cStringIO from StringIO import StringIO as StringIO BytesIO = cStringIO.StringIO NativeStringIO = BytesIO PY2: Any WIN...
1,271
Python
.py
42
28.428571
95
0.69376
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,527
wrappers.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/wrappers.pyi
from _typeshed.wsgi import InputStream, WSGIEnvironment from datetime import datetime from typing import ( Any, Callable, Iterable, Iterator, Mapping, MutableMapping, Optional, Sequence, Text, Tuple, Type, TypeVar, Union, overload, ) from typing_extensions import ...
9,115
Python
.py
273
28.461538
129
0.635849
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,528
exceptions.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/exceptions.pyi
import datetime from _typeshed.wsgi import StartResponse, WSGIEnvironment from typing import Any, Dict, Iterable, List, NoReturn, Optional, Protocol, Text, Tuple, Type, Union from werkzeug.wrappers import Response class _EnvironContainer(Protocol): @property def environ(self) -> WSGIEnvironment: ... class HT...
4,942
Python
.py
144
30.020833
130
0.70435
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,529
lint.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/lint.pyi
import sys from _typeshed import SupportsWrite from _typeshed.wsgi import StartResponse, WSGIApplication, WSGIEnvironment from typing import Any, Iterable, Iterator, List, Mapping, Optional, Protocol, Tuple from ..datastructures import Headers class WSGIWarning(Warning): ... class HTTPWarning(Warning): ... def check...
2,389
Python
.py
52
41.673077
103
0.623979
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,530
dispatcher.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/dispatcher.pyi
from _typeshed.wsgi import StartResponse, WSGIApplication, WSGIEnvironment from typing import Iterable, Mapping, Optional, Text class DispatcherMiddleware(object): app: WSGIApplication mounts: Mapping[Text, WSGIApplication] def __init__(self, app: WSGIApplication, mounts: Optional[Mapping[Text, WSGIApplica...
451
Python
.py
7
61
113
0.75395
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,531
shared_data.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/shared_data.pyi
import datetime from _typeshed.wsgi import StartResponse, WSGIApplication, WSGIEnvironment from typing import IO, Callable, Iterable, List, Mapping, Optional, Text, Tuple, Union _V = Union[Tuple[Text, Text], Text] _Opener = Callable[[], Tuple[IO[bytes], datetime.datetime, int]] _Loader = Callable[[Optional[Text]], Un...
1,295
Python
.py
26
44.692308
116
0.665087
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,532
proxy_fix.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/proxy_fix.pyi
from _typeshed.wsgi import StartResponse, WSGIApplication, WSGIEnvironment from typing import Iterable, Optional class ProxyFix(object): app: WSGIApplication x_for: int x_proto: int x_host: int x_port: int x_prefix: int num_proxies: int def __init__( self, app: WSGIAppli...
712
Python
.py
22
26.409091
103
0.596517
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,533
profiler.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/profiler.pyi
from _typeshed.wsgi import StartResponse, WSGIApplication, WSGIEnvironment from typing import IO, Iterable, List, Optional, Text, Tuple, Union class ProfilerMiddleware(object): def __init__( self, app: WSGIApplication, stream: IO[str] = ..., sort_by: Tuple[Text, Text] = ..., ...
569
Python
.py
13
37.461538
99
0.630631
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,534
http_proxy.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/http_proxy.pyi
from _typeshed.wsgi import StartResponse, WSGIApplication, WSGIEnvironment from typing import Any, Dict, Iterable, Mapping, MutableMapping, Text _Opts = Mapping[Text, Any] _MutableOpts = MutableMapping[Text, Any] class ProxyMiddleware(object): app: WSGIApplication targets: Dict[Text, _MutableOpts] def __i...
652
Python
.py
12
50.5
115
0.708464
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,535
tbtools.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/tbtools.pyi
from typing import Any, Optional UTF8_COOKIE: Any system_exceptions: Any HEADER: Any FOOTER: Any PAGE_HTML: Any CONSOLE_HTML: Any SUMMARY_HTML: Any FRAME_HTML: Any SOURCE_LINE_HTML: Any def render_console_html(secret, evalex_trusted: bool = ...): ... def get_current_traceback(ignore_system_exceptions: bool = ..., sho...
1,687
Python
.py
58
25.034483
117
0.618842
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,536
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/__init__.pyi
from typing import Any, Optional from werkzeug.wrappers import BaseRequest as Request, BaseResponse as Response PIN_TIME: Any def hash_pin(pin): ... def get_machine_id(): ... class _ConsoleFrame: console: Any id: Any def __init__(self, namespace): ... def get_pin_and_cookie_name(app): ... class Debugg...
1,384
Python
.py
45
25.444444
78
0.613653
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,537
repr.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/repr.pyi
from typing import Any, Optional deque: Any missing: Any RegexType: Any HELP_HTML: Any OBJECT_DUMP_HTML: Any def debug_repr(obj): ... def dump(obj=...): ... class _Helper: def __call__(self, topic: Optional[Any] = ...): ... helper: Any class DebugReprGenerator: def __init__(self): ... list_repr: Any ...
846
Python
.py
28
26.607143
78
0.617466
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,538
console.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/console.pyi
import code from typing import Any, Optional class HTMLStringO: def __init__(self): ... def isatty(self): ... def close(self): ... def flush(self): ... def seek(self, n, mode: int = ...): ... def readline(self): ... def reset(self): ... def write(self, x): ... def writelines(self, x...
1,207
Python
.py
39
26.538462
86
0.593293
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,539
jsrouting.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/jsrouting.pyi
from typing import Any def dumps(*args): ... def render_template(name_parts, rules, converters): ... def generate_map(map, name: str = ...): ... def generate_adapter(adapter, name: str = ..., map_name: str = ...): ... def js_to_url_function(converter): ... def NumberConverter_js_to_url(conv): ... js_to_url_functions:...
325
Python
.py
8
39.375
72
0.67619
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,540
securecookie.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/securecookie.pyi
from hashlib import sha1 as _default_hash from hmac import new as hmac from typing import Any, Optional from werkzeug.contrib.sessions import ModificationTrackingDict class UnquoteError(Exception): ... class SecureCookie(ModificationTrackingDict[Any, Any]): hash_method: Any serialization_method: Any quot...
1,212
Python
.py
36
28.027778
104
0.601023
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,541
cache.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/cache.pyi
from typing import Any, Optional class BaseCache: default_timeout: float def __init__(self, default_timeout: float = ...): ... def get(self, key): ... def delete(self, key): ... def get_many(self, *keys): ... def get_dict(self, *keys): ... def set(self, key, value, timeout: Optional[float] ...
3,375
Python
.py
84
35.130952
120
0.559854
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,542
limiter.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/limiter.pyi
from typing import Any class StreamLimitMiddleware: app: Any maximum_size: Any def __init__(self, app, maximum_size=...): ... def __call__(self, environ, start_response): ...
192
Python
.py
6
28.166667
52
0.654054
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,543
atom.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/atom.pyi
from typing import Any, Optional XHTML_NAMESPACE: Any def format_iso8601(obj): ... class AtomFeed: default_generator: Any title: Any title_type: Any url: Any feed_url: Any id: Any updated: Any author: Any icon: Any logo: Any rights: Any rights_type: Any subtitle: A...
1,136
Python
.py
46
20.043478
126
0.607735
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,544
profiler.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/profiler.pyi
from _typeshed import SupportsWrite from typing import AnyStr, Generic, Tuple from ..middleware.profiler import * class MergeStream(Generic[AnyStr]): streams: Tuple[SupportsWrite[AnyStr], ...] def __init__(self, *streams: SupportsWrite[AnyStr]) -> None: ... def write(self, data: AnyStr) -> None: ...
315
Python
.py
7
42
68
0.718954
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,545
testtools.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/testtools.pyi
from werkzeug.wrappers import Response class ContentAccessors: def xml(self): ... def lxml(self): ... def json(self): ... class TestResponse(Response, ContentAccessors): ...
188
Python
.py
6
28
51
0.711111
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,546
sessions.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/sessions.pyi
from typing import Any, Optional, Text, TypeVar from werkzeug.datastructures import CallbackDict _K = TypeVar("_K") _V = TypeVar("_V") def generate_key(salt: Optional[Any] = ...): ... class ModificationTrackingDict(CallbackDict[_K, _V]): modified: Any def __init__(self, *args, **kwargs): ... def copy(se...
2,074
Python
.py
69
24.536232
63
0.575864
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,547
fixers.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/fixers.pyi
from _typeshed.wsgi import StartResponse, WSGIApplication, WSGIEnvironment from typing import Any, Iterable, List, Mapping, Optional, Set, Text from ..middleware.proxy_fix import ProxyFix as ProxyFix class CGIRootFix(object): app: WSGIApplication app_root: Text def __init__(self, app: WSGIApplication, app...
1,650
Python
.py
29
52.655172
127
0.70031
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,548
iterio.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/iterio.pyi
from typing import Any, Optional, Text, Union greenlet: Any class IterIO: def __new__(cls, obj, sentinel: Union[Text, bytes] = ...): ... def __iter__(self): ... def tell(self): ... def isatty(self): ... def seek(self, pos, mode: int = ...): ... def truncate(self, size: Optional[Any] = ...): .....
1,202
Python
.py
35
29.8
67
0.543422
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,549
wrappers.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/wrappers.pyi
from typing import Any def is_known_charset(charset): ... class JSONRequestMixin: def json(self): ... class ProtobufRequestMixin: protobuf_check_initialization: Any def parse_protobuf(self, proto_type): ... class RoutingArgsRequestMixin: routing_args: Any routing_vars: Any class ReverseSlashBeh...
603
Python
.py
20
26.4
45
0.744792
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,550
types.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/types.pyi
import datetime import uuid from typing import IO, Any, Callable, Generic, Iterable, List, Optional, Sequence, Text, Tuple as _PyTuple, Type, TypeVar, Union from click.core import Context, Parameter, _ConvertibleType, _ParamType ParamType = _ParamType class BoolParamType(ParamType): def __call__(self, value: Opt...
5,045
Python
.py
103
44.427184
128
0.640854
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,551
termui.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/termui.pyi
from typing import IO, Any, Callable, Generator, Iterable, Optional, Text, Tuple, TypeVar, Union, overload from click._termui_impl import ProgressBar as _ProgressBar from click.core import _ConvertibleType def hidden_prompt_func(prompt: str) -> str: ... def _build_prompt(text: str, suffix: str, show_default: bool = ....
3,291
Python
.py
99
29.454545
122
0.555834
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,552
utils.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/utils.pyi
from typing import IO, Any, AnyStr, Generic, Iterator, List, Optional, Text, TypeVar _T = TypeVar("_T") def _posixify(name: str) -> str: ... def safecall(func: _T) -> _T: ... def make_str(value: Any) -> str: ... def make_default_short_help(help: str, max_length: int = ...): ... class LazyFile(object): name: str ...
1,752
Python
.py
38
42.657895
122
0.574605
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,553
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/__init__.pyi
from .core import ( Argument as Argument, BaseCommand as BaseCommand, Command as Command, CommandCollection as CommandCollection, Context as Context, Group as Group, MultiCommand as MultiCommand, Option as Option, Parameter as Parameter, ) from .decorators import ( argument as ar...
2,273
Python
.py
82
23.621951
78
0.736866
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,554
core.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/core.pyi
from typing import ( Any, Callable, ContextManager, Dict, Iterable, List, Mapping, NoReturn, Optional, Sequence, Set, Tuple, TypeVar, Union, ) from click.formatting import HelpFormatter from click.parser import OptionParser _CC = TypeVar("_CC", bound=Callable[[]...
11,012
Python
.py
270
35.062963
120
0.602498
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,555
parser.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/parser.pyi
from typing import Any, Dict, Iterable, List, Optional, Set, Tuple from click.core import Context def _unpack_args(args: Iterable[str], nargs_spec: Iterable[int]) -> Tuple[Tuple[Optional[Tuple[str, ...]], ...], List[str]]: ... def split_opt(opt: str) -> Tuple[str, str]: ... def normalize_opt(opt: str, ctx: Context) -...
2,006
Python
.py
59
28.627119
128
0.577537
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,556
formatting.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/formatting.pyi
from typing import ContextManager, Generator, Iterable, List, Optional, Tuple FORCED_WIDTH: Optional[int] def measure_table(rows: Iterable[Iterable[str]]) -> Tuple[int, ...]: ... def iter_rows(rows: Iterable[Iterable[str]], col_count: int) -> Generator[Tuple[str, ...], None, None]: ... def wrap_text( text: str, w...
1,383
Python
.py
30
41.5
124
0.60341
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,557
globals.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/globals.pyi
from typing import Optional from click.core import Context def get_current_context(silent: bool = ...) -> Context: ... def push_context(ctx: Context) -> None: ... def pop_context() -> None: ... def resolve_color_default(color: Optional[bool] = ...) -> Optional[bool]: ...
274
Python
.py
6
44.333333
77
0.68797
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,558
_termui_impl.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/_termui_impl.pyi
from typing import Generic, Optional, TypeVar _T = TypeVar("_T") class ProgressBar(Generic[_T]): def update(self, n_steps: int) -> None: ... def finish(self) -> None: ... def __enter__(self) -> ProgressBar[_T]: ... def __exit__(self, exc_type, exc_value, tb) -> None: ... def __iter__(self) -> Prog...
442
Python
.py
12
32.666667
60
0.565421
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,559
testing.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/testing.pyi
from typing import IO, Any, BinaryIO, ContextManager, Dict, Iterable, List, Mapping, Optional, Text, Union from .core import BaseCommand clickpkg: Any class EchoingStdin: def __init__(self, input: BinaryIO, output: BinaryIO) -> None: ... def __getattr__(self, x: str) -> Any: ... def read(self, n: int = ....
2,136
Python
.py
61
29
123
0.57274
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,560
decorators.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/decorators.pyi
from distutils.version import Version from typing import Any, Callable, Dict, List, Optional, Protocol, Text, Tuple, Type, TypeVar, Union, overload from click.core import Argument, Command, Context, Group, Option, Parameter, _ConvertibleType _T = TypeVar("_T") _F = TypeVar("_F", bound=Callable[..., Any]) class _Iden...
9,143
Python
.py
284
27.711268
109
0.564859
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,561
exceptions.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/click/exceptions.pyi
from typing import IO, Any, List, Optional from click.core import Context, Parameter class ClickException(Exception): exit_code: int message: str def __init__(self, message: str) -> None: ... def format_message(self) -> str: ... def show(self, file: Optional[Any] = ...) -> None: ... class UsageEr...
1,936
Python
.py
49
34.285714
123
0.607676
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,562
fault.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vmodl/fault.pyi
from typing import Any def __getattr__(name: str) -> Any: ... # incomplete class InvalidArgument(Exception): ...
116
Python
.py
3
37
52
0.702703
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,563
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vmodl/__init__.pyi
from typing import Any class DynamicProperty: name: str val: Any
74
Python
.py
4
15.25
22
0.753623
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,564
query.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vmodl/query.pyi
from typing import Any, List, Optional, Type from pyVmomi.vim import ManagedEntity from pyVmomi.vim.view import ContainerView from pyVmomi.vmodl import DynamicProperty class PropertyCollector: class PropertySpec: all: bool type: Type[ManagedEntity] pathSet: List[str] class TraversalSpe...
1,430
Python
.py
36
33
101
0.688218
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,565
fault.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/fault.pyi
from typing import Any def __getattr__(name: str) -> Any: ... # incomplete class InvalidName(Exception): ... class RestrictedByAdministrator(Exception): ... class NoPermission(Exception): ...
195
Python
.py
5
37.6
52
0.739362
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,566
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/__init__.pyi
from datetime import datetime from enum import Enum from typing import Any, List from ..vmodl.query import PropertyCollector from .event import EventManager from .option import OptionManager from .view import ViewManager def __getattr__(name: str) -> Any: ... # incomplete class ManagedObject: ... class ManagedEnti...
2,197
Python
.py
60
31.866667
120
0.707237
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,567
option.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/option.pyi
from typing import Any, List def __getattr__(name: str) -> Any: ... # incomplete class OptionManager: def QueryOptions(self, name: str) -> List[OptionValue]: ... class OptionValue: value: Any
204
Python
.py
6
31.166667
63
0.697436
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,568
view.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/view.pyi
from typing import Any, List, Type from pyVmomi.vim import ManagedEntity def __getattr__(name: str) -> Any: ... # incomplete class ContainerView: def Destroy(self) -> None: ... class ViewManager: # Doc says the `type` parameter of CreateContainerView is a `List[str]`, # but in practice it seems to be `...
586
Python
.py
11
49.727273
125
0.737303
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,569
event.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/event.pyi
from datetime import datetime from typing import Any, List def __getattr__(name: str) -> Any: ... # incomplete class Event: createdTime: datetime class EventFilterSpec: class ByTime: def __init__(self, beginTime: datetime): ... time: EventFilterSpec.ByTime class EventManager: latestEvent: E...
395
Python
.py
12
29.25
69
0.717678
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,570
lru.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cachetools/lru.pyi
from typing import Callable, Iterator, Optional, TypeVar from .cache import Cache as Cache _KT = TypeVar("_KT") _VT = TypeVar("_VT") class LRUCache(Cache[_KT, _VT]): def __init__(self, maxsize: int, getsizeof: Optional[Callable[[_VT], int]] = ...) -> None: ... def __getitem__(self, key: _KT, cache_getitem: C...
607
Python
.py
10
57.4
109
0.582492
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,571
cache.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cachetools/cache.pyi
from typing import Callable, Generic, Iterator, Optional, TypeVar from .abc import DefaultMapping as DefaultMapping _KT = TypeVar("_KT") _VT = TypeVar("_VT") class Cache(DefaultMapping[_KT, _VT], Generic[_KT, _VT]): def __init__(self, maxsize: int, getsizeof: Optional[Callable[[_VT], int]] = ...) -> None: ... ...
712
Python
.py
17
37.882353
98
0.586705
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,572
lfu.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cachetools/lfu.pyi
from typing import Callable, Iterator, Optional, TypeVar from .cache import Cache _KT = TypeVar("_KT") _VT = TypeVar("_VT") class LFUCache(Cache[_KT, _VT]): def __init__(self, maxsize: int, getsizeof: Optional[Callable[[_VT], int]] = ...) -> None: ... def __getitem__(self, key: _KT, cache_getitem: Callable[[...
632
Python
.py
11
54
109
0.569579
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,573
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cachetools/__init__.pyi
from .cache import Cache as Cache from .decorators import cached as cached, cachedmethod as cachedmethod from .lfu import LFUCache as LFUCache from .lru import LRUCache as LRUCache from .rr import RRCache as RRCache from .ttl import TTLCache as TTLCache
254
Python
.py
6
41.333333
70
0.83871
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,574
func.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cachetools/func.pyi
from typing import Any, Callable, Optional, Sequence, TypeVar _T = TypeVar("_T") _F = TypeVar("_F", bound=Callable[..., Any]) _RET = Callable[[_F], _F] def lfu_cache(maxsize: int = ..., typed: bool = ...) -> _RET: ... def lru_cache(maxsize: int = ..., typed: bool = ...) -> _RET: ... def rr_cache(maxsize: int = ..., ...
510
Python
.py
8
62.375
118
0.557114
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,575
ttl.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cachetools/ttl.pyi
from typing import Callable, Iterator, Optional, TypeVar from .cache import Cache _KT = TypeVar("_KT") _VT = TypeVar("_VT") class TTLCache(Cache[_KT, _VT]): def __init__( self, maxsize: int, ttl: float, timer: Callable[[], float] = ..., getsizeof: Optional[Callable[[_VT], int]] = ... ) -> None: ... ...
926
Python
.py
20
41.95
121
0.555925
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,576
abc.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cachetools/abc.pyi
from abc import ABCMeta from typing import MutableMapping, TypeVar _KT = TypeVar("_KT") _VT = TypeVar("_VT") class DefaultMapping(MutableMapping[_KT, _VT], metaclass=ABCMeta): ...
182
Python
.py
5
35
70
0.754286
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,577
rr.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cachetools/rr.pyi
from typing import Callable, Iterator, Optional, Sequence, TypeVar from .cache import Cache as Cache _KT = TypeVar("_KT") _VT = TypeVar("_VT") class RRCache(Cache[_KT, _VT]): def __init__( self, maxsize: int, choice: Optional[Callable[[Sequence[_KT]], _KT]] = ..., getsizeof: Optio...
683
Python
.py
18
33
66
0.548338
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,578
decorators.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cachetools/decorators.pyi
from typing import Any, Callable, ContextManager, MutableMapping, Optional, TypeVar _KT = TypeVar("_KT") _VT = TypeVar("_VT") _T = TypeVar("_T", bound=Callable[..., Any]) _T_co = TypeVar("_T_co", covariant=True) _T_self = TypeVar("_T_self") def cached( cache: Optional[MutableMapping[_KT, _VT]], key: Callable[...,...
605
Python
.py
14
40.928571
121
0.616299
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,579
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/pytz/__init__.pyi
import datetime from typing import List, Mapping, Optional, Set, Union class BaseTzInfo(datetime.tzinfo): zone: str = ... def localize(self, dt: datetime.datetime, is_dst: Optional[bool] = ...) -> datetime.datetime: ... def normalize(self, dt: datetime.datetime) -> datetime.datetime: ... class _UTCclass(B...
1,892
Python
.py
35
51.457143
123
0.717144
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,580
utils.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/bleach/utils.pyi
from collections import OrderedDict from typing import Any, Mapping, Text, overload def force_unicode(text: Text) -> Text: ... @overload def alphabetize_attributes(attrs: None) -> None: ... @overload def alphabetize_attributes(attrs: Mapping[Any, Text]) -> OrderedDict[Any, Text]: ...
286
Python
.py
7
39.714286
84
0.758993
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,581
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/bleach/__init__.pyi
from typing import Any, Container, Iterable, Optional, Text from bleach.linkifier import DEFAULT_CALLBACKS as DEFAULT_CALLBACKS, Linker as Linker, _Callback from bleach.sanitizer import ( ALLOWED_ATTRIBUTES as ALLOWED_ATTRIBUTES, ALLOWED_PROTOCOLS as ALLOWED_PROTOCOLS, ALLOWED_STYLES as ALLOWED_STYLES, ...
841
Python
.py
24
31.75
121
0.685504
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,582
sanitizer.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/bleach/sanitizer.pyi
from typing import Any, Callable, Container, Dict, Iterable, List, Optional, Pattern, Text, Union ALLOWED_TAGS: List[Text] ALLOWED_ATTRIBUTES: Dict[Text, List[Text]] ALLOWED_STYLES: List[Text] ALLOWED_PROTOCOLS: List[Text] INVISIBLE_CHARACTERS: Text INVISIBLE_CHARACTERS_RE: Pattern[Text] INVISIBLE_REPLACEMENT_CHAR: T...
1,148
Python
.py
27
38.296296
123
0.683124
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,583
callbacks.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/bleach/callbacks.pyi
from typing import Any, MutableMapping, Text _Attrs = MutableMapping[Any, Text] def nofollow(attrs: _Attrs, new: bool = ...) -> _Attrs: ... def target_blank(attrs: _Attrs, new: bool = ...) -> _Attrs: ...
206
Python
.py
4
50
63
0.66
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,584
linkifier.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/bleach/linkifier.pyi
from typing import Any, Container, Iterable, List, MutableMapping, Optional, Pattern, Protocol, Text _Attrs = MutableMapping[Any, Text] class _Callback(Protocol): def __call__(self, attrs: _Attrs, new: bool = ...) -> _Attrs: ... DEFAULT_CALLBACKS: List[_Callback] TLDS: List[Text] def build_url_re(tlds: Iterabl...
978
Python
.py
23
37.869565
100
0.629356
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,585
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/backports/__init__.pyi
from typing import Any # Explicitly mark this package as incomplete. def __getattr__(name: str) -> Any: ...
109
Python
.py
3
35
45
0.72381
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,586
fernet.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/fernet.pyi
from typing import List, Optional, Text, Union class InvalidToken(Exception): ... class Fernet(object): def __init__(self, key: Union[bytes, Text]) -> None: ... def decrypt(self, token: bytes, ttl: Optional[int] = ...) -> bytes: ... # decrypt_at_time accepts None ttl at runtime but it's an implementtion d...
1,282
Python
.py
22
53.863636
104
0.650756
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,587
exceptions.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/exceptions.pyi
class AlreadyFinalized(Exception): ... class AlreadyUpdated(Exception): ... class InvalidKey(Exception): ... class InvalidSignature(Exception): ... class InvalidTag(Exception): ... class NotYetFinalized(Exception): ... class UnsupportedAlgorithm(Exception): ...
262
Python
.py
7
36.428571
42
0.780392
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,588
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/__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,589
binding.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/bindings/openssl/binding.pyi
from typing import Any, Optional class Binding(object): ffi: Optional[Any] lib: Optional[Any] def init_static_locks(self) -> None: ...
148
Python
.py
5
26
44
0.697183
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,590
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/backends/__init__.pyi
from typing import Any def default_backend() -> Any: ... # TODO: add some backends def __getattr__(name: str) -> Any: ...
124
Python
.py
4
29.5
38
0.661017
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,591
interfaces.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/backends/interfaces.pyi
from abc import ABCMeta, abstractmethod from typing import Any, Optional, Union from cryptography.hazmat.primitives.asymmetric.dh import ( DHParameterNumbers, DHParameters, DHPrivateKey, DHPrivateNumbers, DHPublicKey, DHPublicNumbers, ) from cryptography.hazmat.primitives.asymmetric.dsa import ...
8,238
Python
.py
182
40.494505
122
0.742601
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,592
poly1305.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/poly1305.pyi
class Poly1305(object): def __init__(self, key: bytes) -> None: ... def finalize(self) -> bytes: ... @classmethod def generate_tag(cls, key: bytes, data: bytes) -> bytes: ... def update(self, data: bytes) -> None: ... def verify(self, tag: bytes) -> None: ... @classmethod def verify_tag(...
375
Python
.py
9
37.111111
73
0.595628
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,593
hmac.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/hmac.pyi
from typing import Optional from cryptography.hazmat.backends.interfaces import HMACBackend from cryptography.hazmat.primitives.hashes import HashAlgorithm class HMAC(object): def __init__(self, key: bytes, algorithm: HashAlgorithm, backend: Optional[HMACBackend] = ...) -> None: ... def copy(self) -> HMAC: .....
457
Python
.py
9
47.333333
111
0.706278
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,594
padding.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/padding.pyi
from abc import ABCMeta, abstractmethod class PaddingContext(metaclass=ABCMeta): @abstractmethod def finalize(self) -> bytes: ... @abstractmethod def update(self, data: bytes) -> bytes: ... class ANSIX923(object): def __init__(self, block_size: int) -> None: ... def padder(self) -> PaddingCont...
540
Python
.py
14
34.5
52
0.659656
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,595
hashes.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/hashes.pyi
from abc import ABCMeta, abstractmethod from typing import Optional from cryptography.hazmat.backends.interfaces import HashBackend class HashAlgorithm(metaclass=ABCMeta): digest_size: int name: str class HashContext(metaclass=ABCMeta): algorithm: HashAlgorithm @abstractmethod def copy(self) -> H...
1,342
Python
.py
37
33.459459
91
0.711864
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,596
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/__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,597
keywrap.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/keywrap.pyi
from typing import Optional from cryptography.hazmat.backends.interfaces import CipherBackend def aes_key_wrap(wrapping_key: bytes, key_to_wrap: bytes, backend: Optional[CipherBackend] = ...) -> bytes: ... def aes_key_wrap_with_padding(wrapping_key: bytes, key_to_wrap: bytes, backend: Optional[CipherBackend] = ...) -...
611
Python
.py
7
85.857143
126
0.735441
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,598
cmac.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/cmac.pyi
from typing import Optional from cryptography.hazmat.backends.interfaces import CMACBackend from cryptography.hazmat.primitives.ciphers import BlockCipherAlgorithm class CMAC(object): def __init__(self, algorithm: BlockCipherAlgorithm, backend: Optional[CMACBackend] = ...) -> None: ... def copy(self) -> CMAC:...
461
Python
.py
9
47.777778
106
0.717778
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)
28,599
__init__.pyi
DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/serialization/__init__.pyi
from abc import ABCMeta from enum import Enum from typing import Any, Optional, Union from cryptography.hazmat.backends.interfaces import ( DERSerializationBackend, DSABackend, EllipticCurveBackend, PEMSerializationBackend, RSABackend, ) from cryptography.hazmat.primitives.asymmetric.dh import DHPr...
2,359
Python
.py
54
40.518519
114
0.786585
DamnWidget/anaconda
2,213
260
184
GPL-3.0
9/5/2024, 5:14:06 PM (Europe/Amsterdam)