2020-08-27 05:24:20 +03:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2020-10-16 20:57:28 +03:00
|
|
|
from pathlib import Path
|
2020-08-27 05:24:20 +03:00
|
|
|
from typing import (
|
2021-01-11 03:26:15 +03:00
|
|
|
Awaitable,
|
2020-08-27 05:24:20 +03:00
|
|
|
TypeVar,
|
|
|
|
Generic,
|
|
|
|
Type,
|
|
|
|
Callable as _Callable,
|
|
|
|
Any,
|
|
|
|
Tuple,
|
|
|
|
List as _List,
|
2020-10-22 21:49:39 +03:00
|
|
|
Dict as _Dict,
|
2020-08-27 05:24:20 +03:00
|
|
|
Optional,
|
|
|
|
Union,
|
|
|
|
Coroutine as _Coroutine,
|
2021-02-01 17:42:21 +03:00
|
|
|
Iterable as _Iterable,
|
2020-10-25 03:56:32 +03:00
|
|
|
Iterator as _Iterator,
|
2021-01-11 03:26:15 +03:00
|
|
|
AsyncIterator as _AsyncIterator,
|
2020-10-25 03:56:32 +03:00
|
|
|
Generator as _Generator,
|
|
|
|
overload,
|
2020-08-27 05:24:20 +03:00
|
|
|
)
|
|
|
|
|
2021-01-22 02:00:24 +03:00
|
|
|
try:
|
|
|
|
import yaml
|
|
|
|
except ImportError:
|
|
|
|
yaml = None
|
|
|
|
|
2021-02-03 17:21:32 +03:00
|
|
|
try:
|
|
|
|
import pydantic
|
|
|
|
except ImportError:
|
|
|
|
pydantic = None
|
|
|
|
|
2020-10-25 03:56:32 +03:00
|
|
|
from . import resources
|
|
|
|
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
Injection = Any
|
|
|
|
T = TypeVar('T')
|
|
|
|
|
|
|
|
|
|
|
|
class OverridingContext:
|
|
|
|
def __init__(self, overridden: Provider, overriding: Provider): ...
|
|
|
|
def __enter__(self) -> Provider: ...
|
|
|
|
def __exit__(self, *_: Any) -> None: ...
|
|
|
|
|
|
|
|
|
2020-09-14 03:32:21 +03:00
|
|
|
class Provider(Generic[T]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def __init__(self) -> None: ...
|
2021-01-11 03:26:15 +03:00
|
|
|
|
|
|
|
@overload
|
2020-09-14 03:32:21 +03:00
|
|
|
def __call__(self, *args: Injection, **kwargs: Injection) -> T: ...
|
2021-01-11 03:26:15 +03:00
|
|
|
@overload
|
|
|
|
def __call__(self, *args: Injection, **kwargs: Injection) -> Awaitable[T]: ...
|
|
|
|
def async_(self, *args: Injection, **kwargs: Injection) -> Awaitable[T]: ...
|
|
|
|
|
2020-10-22 21:49:39 +03:00
|
|
|
def __deepcopy__(self, memo: Optional[_Dict[Any, Any]]) -> Provider: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def __str__(self) -> str: ...
|
|
|
|
def __repr__(self) -> str: ...
|
|
|
|
@property
|
|
|
|
def overridden(self) -> Tuple[Provider]: ...
|
|
|
|
@property
|
|
|
|
def last_overriding(self) -> Optional[Provider]: ...
|
|
|
|
def override(self, provider: Union[Provider, Any]) -> OverridingContext: ...
|
|
|
|
def reset_last_overriding(self) -> None: ...
|
|
|
|
def reset_override(self) -> None: ...
|
|
|
|
def delegate(self) -> Provider: ...
|
|
|
|
@property
|
|
|
|
def provider(self) -> Provider: ...
|
2020-10-20 00:21:38 +03:00
|
|
|
@property
|
|
|
|
def provided(self) -> ProvidedInstance: ...
|
2021-01-11 03:26:15 +03:00
|
|
|
def enable_async_mode(self) -> None: ...
|
|
|
|
def disable_async_mode(self) -> None: ...
|
|
|
|
def reset_async_mode(self) -> None: ...
|
|
|
|
def is_async_mode_enabled(self) -> bool: ...
|
|
|
|
def is_async_mode_disabled(self) -> bool: ...
|
|
|
|
def is_async_mode_undefined(self) -> bool: ...
|
2021-02-01 17:42:21 +03:00
|
|
|
@property
|
|
|
|
def related(self) -> _Iterator[Provider]: ...
|
|
|
|
def traverse(self, types: Optional[_Iterable[Type]] = None) -> _Iterator[Provider]: ...
|
2020-10-22 21:49:39 +03:00
|
|
|
def _copy_overridings(self, copied: Provider, memo: Optional[_Dict[Any, Any]]) -> None: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Object(Provider[T]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def __init__(self, provides: T) -> None: ...
|
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Delegate(Provider[Provider]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def __init__(self, provides: Provider) -> None: ...
|
2020-10-09 22:16:27 +03:00
|
|
|
@property
|
|
|
|
def provides(self) -> Provider: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Dependency(Provider[T]):
|
2021-01-29 21:49:40 +03:00
|
|
|
def __init__(self, instance_of: Type[T] = object, default: Optional[Union[Provider, Any]] = None) -> None: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
@property
|
|
|
|
def instance_of(self) -> Type[T]: ...
|
2021-01-29 21:49:40 +03:00
|
|
|
@property
|
|
|
|
def default(self) -> Provider[T]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def provided_by(self, provider: Provider) -> OverridingContext: ...
|
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class ExternalDependency(Dependency[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
class DependenciesContainer(Object):
|
|
|
|
def __init__(self, **dependencies: Provider) -> None: ...
|
|
|
|
def __getattr__(self, name: str) -> Provider: ...
|
|
|
|
@property
|
2020-10-22 21:49:39 +03:00
|
|
|
def providers(self) -> _Dict[str, Provider]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Callable(Provider[T]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def __init__(self, provides: _Callable[..., T], *args: Injection, **kwargs: Injection) -> None: ...
|
|
|
|
@property
|
|
|
|
def provides(self) -> T: ...
|
|
|
|
@property
|
|
|
|
def args(self) -> Tuple[Injection]: ...
|
|
|
|
def add_args(self, *args: Injection) -> Callable[T]: ...
|
|
|
|
def set_args(self, *args: Injection) -> Callable[T]: ...
|
|
|
|
def clear_args(self) -> Callable[T]: ...
|
|
|
|
@property
|
2021-01-11 03:26:15 +03:00
|
|
|
def kwargs(self) -> _Dict[Any, Injection]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def add_kwargs(self, **kwargs: Injection) -> Callable[T]: ...
|
|
|
|
def set_kwargs(self, **kwargs: Injection) -> Callable[T]: ...
|
|
|
|
def clear_kwargs(self) -> Callable[T]: ...
|
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class DelegatedCallable(Callable[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class AbstractCallable(Callable[T]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def override(self, provider: Callable) -> OverridingContext: ...
|
|
|
|
|
|
|
|
|
|
|
|
class CallableDelegate(Delegate):
|
|
|
|
def __init__(self, callable: Callable) -> None: ...
|
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Coroutine(Callable[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class DelegatedCoroutine(Coroutine[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class AbstractCoroutine(Coroutine[T]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def override(self, provider: Coroutine) -> OverridingContext: ...
|
|
|
|
|
|
|
|
|
|
|
|
class CoroutineDelegate(Delegate):
|
|
|
|
def __init__(self, coroutine: Coroutine) -> None: ...
|
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class ConfigurationOption(Provider[Any]):
|
2020-08-27 05:24:20 +03:00
|
|
|
UNDEFINED: object
|
2020-10-09 22:16:27 +03:00
|
|
|
def __init__(self, name: Tuple[str], root: Configuration) -> None: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def __getattr__(self, item: str) -> ConfigurationOption: ...
|
2020-10-09 22:16:27 +03:00
|
|
|
def __getitem__(self, item: Union[str, Provider]) -> ConfigurationOption: ...
|
|
|
|
@property
|
|
|
|
def root(self) -> Configuration: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def get_name(self) -> str: ...
|
2020-10-09 22:16:27 +03:00
|
|
|
def get_name_segments(self) -> Tuple[Union[str, Provider]]: ...
|
|
|
|
def as_int(self) -> TypedConfigurationOption[int]: ...
|
|
|
|
def as_float(self) -> TypedConfigurationOption[float]: ...
|
|
|
|
def as_(self, callback: _Callable[..., T], *args: Injection, **kwargs: Injection) -> TypedConfigurationOption[T]: ...
|
2021-01-16 16:53:40 +03:00
|
|
|
def required(self) -> ConfigurationOption: ...
|
|
|
|
def is_required(self) -> bool: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def update(self, value: Any) -> None: ...
|
2021-01-24 18:27:45 +03:00
|
|
|
def from_ini(self, filepath: Union[Path, str], required: bool = False) -> None: ...
|
|
|
|
def from_yaml(self, filepath: Union[Path, str], required: bool = False, loader: Optional[Any]=None) -> None: ...
|
2021-02-03 17:21:32 +03:00
|
|
|
def from_pydantic(self, settings: PydanticSettings, required: bool = False, **kwargs: Any) -> None: ...
|
2021-01-24 18:27:45 +03:00
|
|
|
def from_dict(self, options: _Dict[str, Any], required: bool = False) -> None: ...
|
|
|
|
def from_env(self, name: str, default: Optional[Any] = None, required: bool = False) -> None: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
class TypedConfigurationOption(Callable[T]):
|
|
|
|
@property
|
|
|
|
def option(self) -> ConfigurationOption: ...
|
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Configuration(Object[Any]):
|
2020-08-27 05:24:20 +03:00
|
|
|
DEFAULT_NAME: str = 'config'
|
2021-01-16 16:53:40 +03:00
|
|
|
def __init__(self, name: str = DEFAULT_NAME, default: Optional[Any] = None, *, strict: bool = False) -> None: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def __getattr__(self, item: str) -> ConfigurationOption: ...
|
2020-10-09 22:16:27 +03:00
|
|
|
def __getitem__(self, item: Union[str, Provider]) -> ConfigurationOption: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def get_name(self) -> str: ...
|
|
|
|
def get(self, selector: str) -> Any: ...
|
|
|
|
def set(self, selector: str, value: Any) -> OverridingContext: ...
|
|
|
|
def reset_cache(self) -> None: ...
|
|
|
|
def update(self, value: Any) -> None: ...
|
2021-01-24 18:27:45 +03:00
|
|
|
def from_ini(self, filepath: Union[Path, str], required: bool = False) -> None: ...
|
|
|
|
def from_yaml(self, filepath: Union[Path, str], required: bool = False, loader: Optional[Any]=None) -> None: ...
|
2021-02-03 17:21:32 +03:00
|
|
|
def from_pydantic(self, settings: PydanticSettings, required: bool = False, **kwargs: Any) -> None: ...
|
2021-01-24 18:27:45 +03:00
|
|
|
def from_dict(self, options: _Dict[str, Any], required: bool = False) -> None: ...
|
|
|
|
def from_env(self, name: str, default: Optional[Any] = None, required: bool = False) -> None: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Factory(Provider[T]):
|
2020-08-27 05:24:20 +03:00
|
|
|
provided_type: Optional[Type]
|
|
|
|
def __init__(self, provides: _Callable[..., T], *args: Injection, **kwargs: Injection) -> None: ...
|
|
|
|
@property
|
|
|
|
def cls(self) -> T: ...
|
|
|
|
@property
|
|
|
|
def provides(self) -> T: ...
|
|
|
|
@property
|
|
|
|
def args(self) -> Tuple[Injection]: ...
|
|
|
|
def add_args(self, *args: Injection) -> Factory[T]: ...
|
|
|
|
def set_args(self, *args: Injection) -> Factory[T]: ...
|
|
|
|
def clear_args(self) -> Factory[T]: ...
|
|
|
|
@property
|
2021-01-11 03:26:15 +03:00
|
|
|
def kwargs(self) -> _Dict[Any, Injection]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def add_kwargs(self, **kwargs: Injection) -> Factory[T]: ...
|
|
|
|
def set_kwargs(self, **kwargs: Injection) -> Factory[T]: ...
|
|
|
|
def clear_kwargs(self) -> Factory[T]: ...
|
|
|
|
@property
|
2021-01-11 03:26:15 +03:00
|
|
|
def attributes(self) -> _Dict[Any, Injection]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def add_attributes(self, **kwargs: Injection) -> Factory[T]: ...
|
|
|
|
def set_attributes(self, **kwargs: Injection) -> Factory[T]: ...
|
|
|
|
def clear_attributes(self) -> Factory[T]: ...
|
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class DelegatedFactory(Factory[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class AbstractFactory(Factory[T]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def override(self, provider: Factory) -> OverridingContext: ...
|
|
|
|
|
|
|
|
|
|
|
|
class FactoryDelegate(Delegate):
|
|
|
|
def __init__(self, factory: Factory): ...
|
|
|
|
|
|
|
|
|
|
|
|
class FactoryAggregate(Provider):
|
|
|
|
def __init__(self, **factories: Factory): ...
|
|
|
|
def __getattr__(self, factory_name: str) -> Factory: ...
|
2021-01-11 03:26:15 +03:00
|
|
|
|
|
|
|
@overload
|
|
|
|
def __call__(self, factory_name: str, *args: Injection, **kwargs: Injection) -> Any: ...
|
|
|
|
@overload
|
|
|
|
def __call__(self, factory_name: str, *args: Injection, **kwargs: Injection) -> Awaitable[Any]: ...
|
|
|
|
def async_(self, factory_name: str, *args: Injection, **kwargs: Injection) -> Awaitable[Any]: ...
|
|
|
|
|
2020-08-27 05:24:20 +03:00
|
|
|
@property
|
2020-10-22 21:49:39 +03:00
|
|
|
def factories(self) -> _Dict[str, Factory]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class BaseSingleton(Provider[T]):
|
2020-08-27 05:24:20 +03:00
|
|
|
provided_type = Optional[Type]
|
|
|
|
def __init__(self, provides: _Callable[..., T], *args: Injection, **kwargs: Injection) -> None: ...
|
|
|
|
@property
|
|
|
|
def cls(self) -> T: ...
|
|
|
|
@property
|
2021-02-01 17:42:21 +03:00
|
|
|
def provides(self) -> T: ...
|
|
|
|
@property
|
2020-08-27 05:24:20 +03:00
|
|
|
def args(self) -> Tuple[Injection]: ...
|
2021-01-11 03:26:15 +03:00
|
|
|
def add_args(self, *args: Injection) -> BaseSingleton[T]: ...
|
|
|
|
def set_args(self, *args: Injection) -> BaseSingleton[T]: ...
|
|
|
|
def clear_args(self) -> BaseSingleton[T]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
@property
|
2021-01-11 03:26:15 +03:00
|
|
|
def kwargs(self) -> _Dict[Any, Injection]: ...
|
|
|
|
def add_kwargs(self, **kwargs: Injection) -> BaseSingleton[T]: ...
|
|
|
|
def set_kwargs(self, **kwargs: Injection) -> BaseSingleton[T]: ...
|
|
|
|
def clear_kwargs(self) -> BaseSingleton[T]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
@property
|
2021-01-11 03:26:15 +03:00
|
|
|
def attributes(self) -> _Dict[Any, Injection]: ...
|
|
|
|
def add_attributes(self, **kwargs: Injection) -> BaseSingleton[T]: ...
|
|
|
|
def set_attributes(self, **kwargs: Injection) -> BaseSingleton[T]: ...
|
|
|
|
def clear_attributes(self) -> BaseSingleton[T]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def reset(self) -> None: ...
|
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Singleton(BaseSingleton[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class DelegatedSingleton(Singleton[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class ThreadSafeSingleton(Singleton[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class DelegatedThreadSafeSingleton(ThreadSafeSingleton[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class ThreadLocalSingleton(BaseSingleton[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class DelegatedThreadLocalSingleton(ThreadLocalSingleton[T]): ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class AbstractSingleton(BaseSingleton[T]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def override(self, provider: BaseSingleton) -> OverridingContext: ...
|
|
|
|
|
|
|
|
|
|
|
|
class SingletonDelegate(Delegate):
|
|
|
|
def __init__(self, factory: BaseSingleton): ...
|
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class List(Provider[_List]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def __init__(self, *args: Injection): ...
|
|
|
|
@property
|
|
|
|
def args(self) -> Tuple[Injection]: ...
|
2021-01-11 03:26:15 +03:00
|
|
|
def add_args(self, *args: Injection) -> List[T]: ...
|
|
|
|
def set_args(self, *args: Injection) -> List[T]: ...
|
|
|
|
def clear_args(self) -> List[T]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Dict(Provider[_Dict]):
|
2020-11-21 01:30:42 +03:00
|
|
|
def __init__(self, dict_: Optional[_Dict[Any, Injection]] = None, **kwargs: Injection): ...
|
2020-10-22 21:49:39 +03:00
|
|
|
@property
|
|
|
|
def kwargs(self) -> _Dict[Any, Injection]: ...
|
2020-11-21 01:30:42 +03:00
|
|
|
def add_kwargs(self, dict_: Optional[_Dict[Any, Injection]] = None, **kwargs: Injection) -> Dict: ...
|
|
|
|
def set_kwargs(self, dict_: Optional[_Dict[Any, Injection]] = None, **kwargs: Injection) -> Dict: ...
|
2020-10-22 21:49:39 +03:00
|
|
|
def clear_kwargs(self) -> Dict: ...
|
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Resource(Provider[T]):
|
2020-10-25 03:56:32 +03:00
|
|
|
@overload
|
2021-01-11 03:26:15 +03:00
|
|
|
def __init__(self, initializer: Type[resources.Resource[T]], *args: Injection, **kwargs: Injection) -> None: ...
|
|
|
|
@overload
|
|
|
|
def __init__(self, initializer: Type[resources.AsyncResource[T]], *args: Injection, **kwargs: Injection) -> None: ...
|
2020-10-25 03:56:32 +03:00
|
|
|
@overload
|
|
|
|
def __init__(self, initializer: _Callable[..., _Iterator[T]], *args: Injection, **kwargs: Injection) -> None: ...
|
|
|
|
@overload
|
2021-01-11 03:26:15 +03:00
|
|
|
def __init__(self, initializer: _Callable[..., _AsyncIterator[T]], *args: Injection, **kwargs: Injection) -> None: ...
|
|
|
|
@overload
|
|
|
|
def __init__(self, initializer: _Callable[..., _Coroutine[Injection, Injection, T]], *args: Injection, **kwargs: Injection) -> None: ...
|
|
|
|
@overload
|
2020-10-25 03:56:32 +03:00
|
|
|
def __init__(self, initializer: _Callable[..., T], *args: Injection, **kwargs: Injection) -> None: ...
|
|
|
|
@property
|
2021-02-01 17:42:21 +03:00
|
|
|
def initializer(self) -> _Callable[..., Any]: ...
|
|
|
|
@property
|
2020-10-25 03:56:32 +03:00
|
|
|
def args(self) -> Tuple[Injection]: ...
|
2021-01-11 03:26:15 +03:00
|
|
|
def add_args(self, *args: Injection) -> Resource[T]: ...
|
|
|
|
def set_args(self, *args: Injection) -> Resource[T]: ...
|
|
|
|
def clear_args(self) -> Resource[T]: ...
|
2020-10-25 03:56:32 +03:00
|
|
|
@property
|
|
|
|
def kwargs(self) -> _Dict[Any, Injection]: ...
|
2021-01-11 03:26:15 +03:00
|
|
|
def add_kwargs(self, **kwargs: Injection) -> Resource[T]: ...
|
|
|
|
def set_kwargs(self, **kwargs: Injection) -> Resource[T]: ...
|
|
|
|
def clear_kwargs(self) -> Resource[T]: ...
|
2020-10-25 03:56:32 +03:00
|
|
|
@property
|
|
|
|
def initialized(self) -> bool: ...
|
2021-01-11 03:26:15 +03:00
|
|
|
def init(self) -> Optional[Awaitable[T]]: ...
|
|
|
|
def shutdown(self) -> Optional[Awaitable]: ...
|
2020-10-25 03:56:32 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Container(Provider[T]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def __init__(self, container_cls: Type[T], container: Optional[T] = None, **overriding_providers: Provider) -> None: ...
|
|
|
|
def __getattr__(self, name: str) -> Provider: ...
|
2020-10-09 22:16:27 +03:00
|
|
|
@property
|
|
|
|
def container(self) -> T: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2021-01-11 03:26:15 +03:00
|
|
|
class Selector(Provider[Any]):
|
2020-08-27 05:24:20 +03:00
|
|
|
def __init__(self, selector: _Callable[..., Any], **providers: Provider): ...
|
|
|
|
def __getattr__(self, name: str) -> Provider: ...
|
|
|
|
@property
|
2020-10-22 21:49:39 +03:00
|
|
|
def providers(self) -> _Dict[str, Provider]: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
class ProvidedInstanceFluentInterface:
|
2020-09-04 00:48:45 +03:00
|
|
|
def __getattr__(self, item: Any) -> AttributeGetter: ...
|
|
|
|
def __getitem__(self, item: Any) -> ItemGetter: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
def call(self, *args: Injection, **kwargs: Injection) -> MethodCaller: ...
|
|
|
|
|
|
|
|
|
|
|
|
class ProvidedInstance(Provider, ProvidedInstanceFluentInterface):
|
|
|
|
def __init__(self, provider: Provider) -> None: ...
|
|
|
|
|
|
|
|
|
|
|
|
class AttributeGetter(Provider, ProvidedInstanceFluentInterface):
|
|
|
|
def __init__(self, provider: Provider, attribute: str) -> None: ...
|
|
|
|
|
|
|
|
|
|
|
|
class ItemGetter(Provider, ProvidedInstanceFluentInterface):
|
|
|
|
def __init__(self, provider: Provider, item: str) -> None: ...
|
|
|
|
|
|
|
|
|
|
|
|
class MethodCaller(Provider, ProvidedInstanceFluentInterface):
|
|
|
|
def __init__(self, provider: Provider, *args: Injection, **kwargs: Injection) -> None: ...
|
|
|
|
|
|
|
|
|
|
|
|
def is_provider(instance: Any) -> bool: ...
|
|
|
|
|
|
|
|
|
|
|
|
def ensure_is_provider(instance: Any) -> Provider: ...
|
|
|
|
|
|
|
|
|
|
|
|
def is_delegated(instance: Any) -> bool: ...
|
|
|
|
|
|
|
|
|
|
|
|
def represent_provider(provider: Provider, provides: Any) -> str: ...
|
|
|
|
|
|
|
|
|
2020-10-22 21:49:39 +03:00
|
|
|
def deepcopy(instance: Any, memo: Optional[_Dict[Any, Any]] = None): Any: ...
|
2020-08-27 05:24:20 +03:00
|
|
|
|
|
|
|
|
2020-10-22 21:49:39 +03:00
|
|
|
def merge_dicts(dict1: _Dict[Any, Any], dict2: _Dict[Any, Any]) -> _Dict[Any, Any]: ...
|
2021-01-22 02:00:24 +03:00
|
|
|
|
|
|
|
|
2021-02-01 17:42:21 +03:00
|
|
|
def traverse(*providers: Provider, types: Optional[_Iterable[Type]]=None) -> _Iterator[Provider]: ...
|
|
|
|
|
|
|
|
|
2021-01-22 02:00:24 +03:00
|
|
|
if yaml:
|
|
|
|
class YamlLoader(yaml.SafeLoader): ...
|
|
|
|
else:
|
|
|
|
class YamlLoader: ...
|
2021-02-03 17:21:32 +03:00
|
|
|
|
|
|
|
if pydantic:
|
|
|
|
PydanticSettings = pydantic.BaseSettings
|
|
|
|
else:
|
|
|
|
PydanticSettings = Any
|