python-dependency-injector/docs/advanced_usage/index.rst

64 lines
2.3 KiB
ReStructuredText
Raw Normal View History

2015-08-05 17:22:25 +03:00
Advanced usage
==============
2015-08-31 16:31:38 +03:00
Current section of documentation describes advanced usage of
*Dependency Injector*.
2015-08-05 17:22:25 +03:00
@inject decorator
-----------------
2015-11-23 20:26:39 +03:00
.. module:: dependency_injector.injections
:py:func:`inject` decorator is a part of
:py:mod:`dependency_injector.injections` module.
:py:func:`inject` decorator can be used for making *inline* dependency
2015-09-02 12:23:01 +03:00
injections. It *patches* decorated callable in such way that dependency
injection will be done during every call of decorated callable.
2015-08-05 17:22:25 +03:00
2015-11-23 20:26:39 +03:00
:py:func:`inject` takes a various number of positional and keyword arguments
that are used as decorated callable injections. Every time, when
2015-11-23 20:26:39 +03:00
:py:func:`inject` is called, positional and keyword argument injections would
be passed as an callable arguments.
Such behaviour is very similar to the standard Python ``functools.partial``
object, except of one thing: all injectable values are provided
2015-11-23 20:26:39 +03:00
*"as is"*, except of providers (subclasses of
:py:class:`dependency_injector.providers.Provider`). Providers
will be called every time, when injection needs to be done. For example,
2015-11-23 20:26:39 +03:00
if injectable value of injection is a
:py:class:`dependency_injector.providers.Factory`, it will provide new one
instance (as a result of its call) every time, when injection needs to be done.
2015-11-23 20:26:39 +03:00
:py:func:`inject` behaviour with context positional and keyword arguments is
very like a standard Python ``functools.partial``:
2015-11-23 20:26:39 +03:00
- Positional context arguments will be appended after :py:func:`inject`
positional injections.
2015-11-23 20:26:39 +03:00
- Keyword context arguments have priority on :py:func:`inject` keyword
injections and will be merged over them.
2015-08-05 17:22:25 +03:00
Example:
.. literalinclude:: ../../examples/advanced_usage/inject_simple.py
2015-08-05 17:22:25 +03:00
:language: python
2015-11-23 20:26:39 +03:00
Example of usage :py:func:`inject` decorator with Flask:
2015-08-05 17:22:25 +03:00
.. literalinclude:: ../../examples/advanced_usage/inject_flask.py
:language: python
@inject decorator with classes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2015-11-23 20:26:39 +03:00
:py:func:`inject` could be applied for classes. In such case, it will look for
class ``__init__()`` method and pass injection to it. If decorated class has
2015-11-23 20:26:39 +03:00
no ``__init__()`` method, appropriate
:py:exc:`dependency_injector.errors.Error` will be raised.
2015-11-23 20:26:39 +03:00
Example of usage :py:func:`inject` with Flask class-based view:
.. literalinclude:: ../../examples/advanced_usage/inject_flask_class_based.py
2015-08-05 17:22:25 +03:00
:language: python