__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from collections.abc import Iterable, Iterator, Mapping, MutableMapping
from typing import Any, Generic, TypeVar, overload
_D = TypeVar("_D")
_VT = TypeVar("_VT")
class CaseInsensitiveDict(MutableMapping[str, _VT], Generic[_VT]):
def __init__(self, data: Mapping[str, _VT] | Iterable[tuple[str, _VT]] | None = None, **kwargs: _VT) -> None: ...
def lower_items(self) -> Iterator[tuple[str, _VT]]: ...
def __setitem__(self, key: str, value: _VT) -> None: ...
def __getitem__(self, key: str) -> _VT: ...
def __delitem__(self, key: str) -> None: ...
def __iter__(self) -> Iterator[str]: ...
def __len__(self) -> int: ...
def copy(self) -> CaseInsensitiveDict[_VT]: ...
class LookupDict(dict[str, _VT]):
name: Any
def __init__(self, name: Any = None) -> None: ...
def __getitem__(self, key: str) -> _VT | None: ... # type: ignore[override]
def __setattr__(self, attr: str, value: _VT, /) -> None: ...
@overload
def get(self, key: str, default: None = None) -> _VT | None: ...
@overload
def get(self, key: str, default: _D | _VT) -> _D | _VT: ...
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __init__.pyi | File | 1.26 KB | 0644 |
|
| __version__.pyi | File | 273 B | 0644 |
|
| adapters.pyi | File | 4.03 KB | 0644 |
|
| api.pyi | File | 4.71 KB | 0644 |
|
| auth.pyi | File | 1.16 KB | 0644 |
|
| certs.pyi | File | 17 B | 0644 |
|
| compat.pyi | File | 787 B | 0644 |
|
| cookies.pyi | File | 2.69 KB | 0644 |
|
| exceptions.pyi | File | 1.59 KB | 0644 |
|
| help.pyi | File | 791 B | 0644 |
|
| hooks.pyi | File | 117 B | 0644 |
|
| models.pyi | File | 5.39 KB | 0644 |
|
| packages.pyi | File | 175 B | 0644 |
|
| py.typed | File | 0 B | 0644 |
|
| sessions.pyi | File | 11.6 KB | 0644 |
|
| status_codes.pyi | File | 35 B | 0644 |
|
| structures.pyi | File | 1.08 KB | 0644 |
|
| utils.pyi | File | 2.97 KB | 0644 |
|