__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from abc import abstractmethod
from collections.abc import Iterable
from threading import Lock
from typing import Any, ClassVar, Literal, Protocol, TypeVar
from typing_extensions import Self
from fanstatic.compiler import Compiler, Minifier
from fanstatic.core import Library
from fanstatic.injector import InjectorPlugin
from pkg_resources import EntryPoint
class _HasName(Protocol):
@property
def name(self) -> str: ...
_NamedT = TypeVar("_NamedT", bound=_HasName)
prepare_lock: Lock
class Registry(dict[str, _NamedT]):
@property
@abstractmethod
def ENTRY_POINT(self) -> str: ...
def __init__(self, items: Iterable[_NamedT] = ()) -> None: ...
def add(self, item: _NamedT) -> None: ...
def load_items_from_entry_points(self) -> None: ...
def make_item_from_entry_point(self, entry_point: EntryPoint) -> Any: ...
@classmethod
def instance(cls) -> Self: ...
class LibraryRegistry(Registry[Library]):
ENTRY_POINT: ClassVar[Literal["fanstatic.libraries"]]
prepared: bool
def prepare(self) -> None: ...
get_library_registry = LibraryRegistry.instance
class CompilerRegistry(Registry[Compiler]):
ENTRY_POINT: ClassVar[Literal["fanstatic.compilers"]]
class MinifierRegistry(Registry[Minifier]):
ENTRY_POINT: ClassVar[Literal["fanstatic.minifiers"]]
class InjectorRegistry(Registry[InjectorPlugin]):
ENTRY_POINT: ClassVar[Literal["fanstatic.injectors"]]
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __init__.pyi | File | 1.8 KB | 0644 |
|
| checksum.pyi | File | 359 B | 0644 |
|
| compiler.pyi | File | 3.73 KB | 0644 |
|
| config.pyi | File | 249 B | 0644 |
|
| core.pyi | File | 7.65 KB | 0644 |
|
| inclusion.pyi | File | 744 B | 0644 |
|
| injector.pyi | File | 1.98 KB | 0644 |
|
| publisher.pyi | File | 1.61 KB | 0644 |
|
| py.typed | File | 0 B | 0644 |
|
| registry.pyi | File | 1.39 KB | 0644 |
|
| wsgi.pyi | File | 797 B | 0644 |
|