mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 10:03:56 +03:00
127 lines
2.2 KiB
Python
127 lines
2.2 KiB
Python
"""Dependency injector."""
|
|
|
|
from dependency_injector.catalogs import (
|
|
DeclarativeCatalog,
|
|
AbstractCatalog,
|
|
DynamicCatalog,
|
|
CatalogBundle,
|
|
override,
|
|
)
|
|
|
|
from dependency_injector.providers import (
|
|
Provider,
|
|
Delegate,
|
|
Callable,
|
|
DelegatedCallable,
|
|
Factory,
|
|
DelegatedFactory,
|
|
Singleton,
|
|
DelegatedSingleton,
|
|
ExternalDependency,
|
|
StaticProvider,
|
|
Class,
|
|
Object,
|
|
Function,
|
|
Value,
|
|
Config,
|
|
)
|
|
|
|
from dependency_injector.injections import (
|
|
Injection,
|
|
Arg,
|
|
KwArg,
|
|
Attribute,
|
|
Method,
|
|
inject,
|
|
)
|
|
|
|
from dependency_injector.utils import (
|
|
is_provider,
|
|
ensure_is_provider,
|
|
is_delegated_provider,
|
|
is_injection,
|
|
ensure_is_injection,
|
|
is_arg_injection,
|
|
is_kwarg_injection,
|
|
is_attribute_injection,
|
|
is_method_injection,
|
|
is_catalog,
|
|
is_dynamic_catalog,
|
|
is_declarative_catalog,
|
|
is_catalog_bundle,
|
|
ensure_is_catalog_bundle,
|
|
)
|
|
|
|
from dependency_injector.errors import (
|
|
Error,
|
|
UndefinedProviderError,
|
|
)
|
|
|
|
# Backward compatibility for versions < 0.11.*
|
|
from dependency_injector import catalogs
|
|
catalog = catalogs
|
|
|
|
VERSION = '1.17.0'
|
|
"""Version number that follows semantic versioning.
|
|
|
|
:type: str
|
|
"""
|
|
|
|
|
|
__all__ = (
|
|
# Catalogs
|
|
'DeclarativeCatalog',
|
|
'AbstractCatalog',
|
|
'DynamicCatalog',
|
|
'CatalogBundle',
|
|
'override',
|
|
|
|
# Providers
|
|
'Provider',
|
|
'Delegate',
|
|
'Callable',
|
|
'DelegatedCallable',
|
|
'Factory',
|
|
'DelegatedFactory',
|
|
'Singleton',
|
|
'DelegatedSingleton',
|
|
'ExternalDependency',
|
|
'StaticProvider',
|
|
'Class',
|
|
'Object',
|
|
'Function',
|
|
'Value',
|
|
'Config',
|
|
|
|
# Injections
|
|
'Injection',
|
|
'Arg',
|
|
'KwArg',
|
|
'Attribute',
|
|
'Method',
|
|
'inject',
|
|
|
|
# Utils
|
|
'is_provider',
|
|
'ensure_is_provider',
|
|
'is_delegated_provider',
|
|
'is_injection',
|
|
'ensure_is_injection',
|
|
'is_arg_injection',
|
|
'is_kwarg_injection',
|
|
'is_attribute_injection',
|
|
'is_method_injection',
|
|
'is_catalog',
|
|
'is_dynamic_catalog',
|
|
'is_declarative_catalog',
|
|
'is_catalog_bundle',
|
|
'ensure_is_catalog_bundle',
|
|
|
|
# Errors
|
|
'Error',
|
|
'UndefinedProviderError',
|
|
|
|
# Version
|
|
'VERSION'
|
|
)
|