mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
86 lines
1.8 KiB
Python
86 lines
1.8 KiB
Python
"""Dependency injector."""
|
|
|
|
from .catalog import AbstractCatalog
|
|
from .catalog import CatalogBundle
|
|
from .catalog import override
|
|
|
|
from .providers import Provider
|
|
from .providers import Delegate
|
|
from .providers import Factory
|
|
from .providers import Singleton
|
|
from .providers import ExternalDependency
|
|
from .providers import StaticProvider
|
|
from .providers import Class
|
|
from .providers import Object
|
|
from .providers import Function
|
|
from .providers import Value
|
|
from .providers import Callable
|
|
from .providers import Config
|
|
|
|
from .injections import Injection
|
|
from .injections import Arg
|
|
from .injections import KwArg
|
|
from .injections import Attribute
|
|
from .injections import Method
|
|
from .injections import inject
|
|
|
|
from .utils import is_provider
|
|
from .utils import ensure_is_provider
|
|
from .utils import is_injection
|
|
from .utils import ensure_is_injection
|
|
from .utils import is_arg_injection
|
|
from .utils import is_kwarg_injection
|
|
from .utils import is_attribute_injection
|
|
from .utils import is_method_injection
|
|
from .utils import is_catalog
|
|
from .utils import is_catalog_bundle
|
|
from .utils import ensure_is_catalog_bundle
|
|
|
|
from .errors import Error
|
|
|
|
|
|
__all__ = (
|
|
# Catalogs
|
|
'AbstractCatalog',
|
|
'CatalogBundle',
|
|
'override',
|
|
|
|
# Providers
|
|
'Provider',
|
|
'Delegate',
|
|
'Factory',
|
|
'Singleton',
|
|
'ExternalDependency',
|
|
'StaticProvider',
|
|
'Class',
|
|
'Object',
|
|
'Function',
|
|
'Value',
|
|
'Callable',
|
|
'Config',
|
|
|
|
# Injections
|
|
'Injection',
|
|
'Arg',
|
|
'KwArg',
|
|
'Attribute',
|
|
'Method',
|
|
'inject',
|
|
|
|
# Utils
|
|
'is_provider',
|
|
'ensure_is_provider',
|
|
'is_injection',
|
|
'ensure_is_injection',
|
|
'is_arg_injection',
|
|
'is_kwarg_injection',
|
|
'is_attribute_injection',
|
|
'is_method_injection',
|
|
'is_catalog',
|
|
'is_catalog_bundle',
|
|
'ensure_is_catalog_bundle',
|
|
|
|
# Errors
|
|
'Error',
|
|
)
|