2020-07-03 05:07:07 +03:00
|
|
|
.. figure:: https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/logo.svg
|
2020-07-11 19:15:00 +03:00
|
|
|
:target: https://github.com/ets-labs/python-dependency-injector
|
2020-07-03 05:07:07 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. image:: https://img.shields.io/pypi/v/dependency_injector.svg
|
|
|
|
:target: https://pypi.org/project/dependency-injector/
|
|
|
|
:alt: Latest Version
|
2020-07-11 19:15:00 +03:00
|
|
|
|
2020-07-03 05:07:07 +03:00
|
|
|
.. image:: https://img.shields.io/pypi/l/dependency_injector.svg
|
|
|
|
:target: https://pypi.org/project/dependency-injector/
|
|
|
|
:alt: License
|
2020-07-11 19:15:00 +03:00
|
|
|
|
2020-07-03 05:07:07 +03:00
|
|
|
.. image:: https://img.shields.io/pypi/pyversions/dependency_injector.svg
|
|
|
|
:target: https://pypi.org/project/dependency-injector/
|
|
|
|
:alt: Supported Python versions
|
2020-07-11 19:15:00 +03:00
|
|
|
|
2020-07-03 05:07:07 +03:00
|
|
|
.. image:: https://img.shields.io/pypi/implementation/dependency_injector.svg
|
|
|
|
:target: https://pypi.org/project/dependency-injector/
|
|
|
|
:alt: Supported Python implementations
|
2020-07-11 19:15:00 +03:00
|
|
|
|
|
|
|
.. image:: https://pepy.tech/badge/dependency-injector
|
|
|
|
:target: https://pepy.tech/project/dependency-injector
|
|
|
|
:alt: Downloads
|
|
|
|
|
|
|
|
.. image:: https://pepy.tech/badge/dependency-injector/month
|
|
|
|
:target: https://pepy.tech/project/dependency-injector
|
|
|
|
:alt: Downloads
|
|
|
|
|
|
|
|
.. image:: https://pepy.tech/badge/dependency-injector/week
|
|
|
|
:target: https://pepy.tech/project/dependency-injector
|
|
|
|
:alt: Downloads
|
|
|
|
|
|
|
|
.. image:: https://img.shields.io/pypi/wheel/dependency-injector.svg
|
|
|
|
:target: https://pypi.org/project/dependency-injector/
|
|
|
|
:alt: Wheel
|
|
|
|
|
2021-01-27 15:38:35 +03:00
|
|
|
.. image:: https://img.shields.io/github/workflow/status/ets-labs/python-dependency-injector/Tests%20and%20linters/master
|
|
|
|
:target: https://github.com/ets-labs/python-dependency-injector/actions
|
2020-07-03 05:07:07 +03:00
|
|
|
:alt: Build Status
|
2020-10-29 22:46:43 +03:00
|
|
|
|
2020-07-03 05:07:07 +03:00
|
|
|
.. image:: https://coveralls.io/repos/github/ets-labs/python-dependency-injector/badge.svg?branch=master
|
|
|
|
:target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master
|
|
|
|
:alt: Coverage Status
|
|
|
|
|
|
|
|
What is ``Dependency Injector``?
|
|
|
|
================================
|
|
|
|
|
2020-07-11 19:15:00 +03:00
|
|
|
``Dependency Injector`` is a dependency injection framework for Python.
|
2016-12-28 00:06:40 +03:00
|
|
|
|
2020-09-03 23:28:11 +03:00
|
|
|
It helps implementing the dependency injection principle.
|
2020-08-14 05:57:34 +03:00
|
|
|
|
2020-09-14 03:46:24 +03:00
|
|
|
Key features of the ``Dependency Injector``:
|
|
|
|
|
|
|
|
- **Providers**. Provides ``Factory``, ``Singleton``, ``Callable``, ``Coroutine``, ``Object``,
|
2020-10-25 03:56:32 +03:00
|
|
|
``List``, ``Dict``, ``Configuration``, ``Resource``, ``Dependency`` and ``Selector`` providers
|
|
|
|
that help assembling your objects.
|
2020-10-22 21:49:39 +03:00
|
|
|
See `Providers <https://python-dependency-injector.ets-labs.org/providers/index.html>`_.
|
2020-09-14 03:46:24 +03:00
|
|
|
- **Overriding**. Can override any provider by another provider on the fly. This helps in testing
|
|
|
|
and configuring dev / stage environment to replace API clients with stubs etc. See
|
2020-10-20 00:18:39 +03:00
|
|
|
`Provider overriding <https://python-dependency-injector.ets-labs.org/providers/overriding.html>`_.
|
2021-02-03 17:21:32 +03:00
|
|
|
- **Configuration**. Reads configuration from ``yaml`` & ``ini`` files, ``pydantic`` settings,
|
|
|
|
environment variables, and dictionaries.
|
2020-10-20 00:18:39 +03:00
|
|
|
See `Configuration provider <https://python-dependency-injector.ets-labs.org/providers/configuration.html>`_.
|
2020-09-14 03:46:24 +03:00
|
|
|
- **Containers**. Provides declarative and dynamic containers.
|
2020-10-20 00:18:39 +03:00
|
|
|
See `Containers <https://python-dependency-injector.ets-labs.org/containers/index.html>`_.
|
2020-10-25 03:56:32 +03:00
|
|
|
- **Resources**. Helps with initialization and configuring of logging, event loop, thread
|
2020-10-30 05:55:09 +03:00
|
|
|
or process pool, etc. Can be used for per-function execution scope in tandem with wiring.
|
2020-10-25 03:56:32 +03:00
|
|
|
See `Resource provider <https://python-dependency-injector.ets-labs.org/providers/resource.html>`_.
|
2020-10-09 22:16:27 +03:00
|
|
|
- **Wiring**. Injects dependencies into functions and methods. Helps integrating with
|
2020-11-16 00:06:42 +03:00
|
|
|
other frameworks: Django, Flask, Aiohttp, Sanic, FastAPI, etc.
|
2020-10-20 00:18:39 +03:00
|
|
|
See `Wiring <https://python-dependency-injector.ets-labs.org/wiring.html>`_.
|
2021-01-11 03:26:15 +03:00
|
|
|
- **Asynchronous**. Supports asynchronous injections.
|
|
|
|
See `Asynchronous injections <https://python-dependency-injector.ets-labs.org/providers/async.html>`_.
|
2020-09-14 03:46:24 +03:00
|
|
|
- **Typing**. Provides typing stubs, ``mypy``-friendly.
|
2020-10-20 00:18:39 +03:00
|
|
|
See `Typing and mypy <https://python-dependency-injector.ets-labs.org/providers/typing_mypy.html>`_.
|
2020-10-09 22:16:27 +03:00
|
|
|
- **Performance**. Fast. Written in ``Cython``.
|
2020-09-14 03:46:24 +03:00
|
|
|
- **Maturity**. Mature and production-ready. Well-tested, documented and supported.
|
2016-12-28 00:06:40 +03:00
|
|
|
|
2020-08-14 04:53:13 +03:00
|
|
|
.. code-block:: python
|
2016-12-28 00:06:40 +03:00
|
|
|
|
2020-08-15 18:01:58 +03:00
|
|
|
from dependency_injector import containers, providers
|
2021-09-30 22:03:19 +03:00
|
|
|
from dependency_injector.wiring import Provide, inject
|
2020-08-15 18:01:58 +03:00
|
|
|
|
|
|
|
|
|
|
|
class Container(containers.DeclarativeContainer):
|
2016-10-06 22:48:43 +03:00
|
|
|
|
2020-08-15 18:01:58 +03:00
|
|
|
config = providers.Configuration()
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-08-15 18:01:58 +03:00
|
|
|
api_client = providers.Singleton(
|
|
|
|
ApiClient,
|
|
|
|
api_key=config.api_key,
|
2020-08-25 17:27:11 +03:00
|
|
|
timeout=config.timeout.as_int(),
|
2020-08-15 18:01:58 +03:00
|
|
|
)
|
2020-07-18 07:40:14 +03:00
|
|
|
|
2020-08-15 18:01:58 +03:00
|
|
|
service = providers.Factory(
|
|
|
|
Service,
|
|
|
|
api_client=api_client,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-11-16 00:06:42 +03:00
|
|
|
@inject
|
2020-10-09 22:16:27 +03:00
|
|
|
def main(service: Service = Provide[Container.service]):
|
|
|
|
...
|
|
|
|
|
|
|
|
|
2021-09-30 22:03:19 +03:00
|
|
|
if __name__ == "__main__":
|
2020-08-15 18:01:58 +03:00
|
|
|
container = Container()
|
2021-09-30 22:03:19 +03:00
|
|
|
container.config.api_key.from_env("API_KEY")
|
|
|
|
container.config.timeout.from_env("TIMEOUT")
|
|
|
|
container.wire(modules=[__name__])
|
2020-08-15 18:01:58 +03:00
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
main() # <-- dependency is injected automatically
|
2020-08-15 18:01:58 +03:00
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
with container.api_client.override(mock.Mock()):
|
|
|
|
main() # <-- overridden dependency is injected automatically
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
When you call ``main()`` function the ``Service`` dependency is assembled and injected automatically.
|
|
|
|
|
|
|
|
When doing a testing you call the ``container.api_client.override()`` to replace the real API
|
|
|
|
client with a mock. When you call ``main()`` the mock is injected.
|
|
|
|
|
|
|
|
You can override any provider with another provider.
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
It also helps you in configuring project for the different environments: replace an API client
|
|
|
|
with a stub on the dev or stage.
|
|
|
|
|
|
|
|
With the ``Dependency Injector`` objects assembling is consolidated in the container.
|
|
|
|
Dependency injections are defined explicitly.
|
|
|
|
This makes easier to understand and change how application works.
|
|
|
|
|
|
|
|
.. figure:: https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/di-readme.svg
|
|
|
|
:target: https://github.com/ets-labs/python-dependency-injector
|
2020-09-10 00:53:00 +03:00
|
|
|
|
2020-09-14 03:46:24 +03:00
|
|
|
Visit the docs to know more about the
|
2020-10-20 00:18:39 +03:00
|
|
|
`Dependency injection and inversion of control in Python <https://python-dependency-injector.ets-labs.org/introduction/di_in_python.html>`_.
|
2020-08-14 22:45:30 +03:00
|
|
|
|
2020-08-14 04:53:13 +03:00
|
|
|
Installation
|
|
|
|
------------
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-08-14 04:53:13 +03:00
|
|
|
The package is available on the `PyPi`_::
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-08-14 04:53:13 +03:00
|
|
|
pip install dependency-injector
|
2020-07-18 07:40:14 +03:00
|
|
|
|
2020-08-14 04:53:13 +03:00
|
|
|
Documentation
|
|
|
|
-------------
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-10-30 06:00:43 +03:00
|
|
|
The documentation is available `here <https://python-dependency-injector.ets-labs.org/>`_.
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-09-14 03:46:24 +03:00
|
|
|
Examples
|
|
|
|
--------
|
|
|
|
|
|
|
|
Choose one of the following:
|
|
|
|
|
2020-10-20 00:18:39 +03:00
|
|
|
- `Application example (single container) <https://python-dependency-injector.ets-labs.org/examples/application-single-container.html>`_
|
|
|
|
- `Application example (multiple containers) <https://python-dependency-injector.ets-labs.org/examples/application-multiple-containers.html>`_
|
|
|
|
- `Decoupled packages example (multiple containers) <https://python-dependency-injector.ets-labs.org/examples/decoupled-packages.html>`_
|
2021-02-25 18:51:40 +03:00
|
|
|
- `Boto3 example <https://python-dependency-injector.ets-labs.org/examples/boto3.html>`_
|
2020-10-20 00:18:39 +03:00
|
|
|
- `Django example <https://python-dependency-injector.ets-labs.org/examples/django.html>`_
|
|
|
|
- `Flask example <https://python-dependency-injector.ets-labs.org/examples/flask.html>`_
|
|
|
|
- `Aiohttp example <https://python-dependency-injector.ets-labs.org/examples/aiohttp.html>`_
|
|
|
|
- `Sanic example <https://python-dependency-injector.ets-labs.org/examples/sanic.html>`_
|
2021-01-11 03:26:15 +03:00
|
|
|
- `FastAPI example <https://python-dependency-injector.ets-labs.org/examples/fastapi.html>`_
|
|
|
|
- `FastAPI + Redis example <https://python-dependency-injector.ets-labs.org/examples/fastapi-redis.html>`_
|
2021-02-05 02:18:25 +03:00
|
|
|
- `FastAPI + SQLAlchemy example <https://python-dependency-injector.ets-labs.org/examples/fastapi-sqlalchemy.html>`_
|
2020-09-14 03:46:24 +03:00
|
|
|
|
2020-08-11 05:23:12 +03:00
|
|
|
Tutorials
|
2020-08-14 04:53:13 +03:00
|
|
|
---------
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-08-11 05:23:12 +03:00
|
|
|
Choose one of the following:
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-10-20 00:18:39 +03:00
|
|
|
- `Flask web application tutorial <https://python-dependency-injector.ets-labs.org/tutorials/flask.html>`_
|
|
|
|
- `Aiohttp REST API tutorial <https://python-dependency-injector.ets-labs.org/tutorials/aiohttp.html>`_
|
|
|
|
- `Asyncio monitoring daemon tutorial <https://python-dependency-injector.ets-labs.org/tutorials/asyncio-daemon.html>`_
|
|
|
|
- `CLI application tutorial <https://python-dependency-injector.ets-labs.org/tutorials/cli.html>`_
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-08-14 04:53:13 +03:00
|
|
|
Concept
|
|
|
|
-------
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
The framework stands on the `PEP20 (The Zen of Python) <https://www.python.org/dev/peps/pep-0020/>`_ principle:
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-10-09 23:18:55 +03:00
|
|
|
.. code-block:: bash
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
Explicit is better than implicit
|
2020-08-14 04:53:13 +03:00
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
You need to specify how to assemble and where to inject the dependencies explicitly.
|
2020-08-14 04:53:13 +03:00
|
|
|
|
2020-10-09 22:16:27 +03:00
|
|
|
The power of the framework is in a simplicity.
|
|
|
|
``Dependency Injector`` is a simple tool for the powerful concept.
|
2020-07-14 05:45:15 +03:00
|
|
|
|
2020-08-11 05:23:12 +03:00
|
|
|
Frequently asked questions
|
2020-08-14 04:53:13 +03:00
|
|
|
--------------------------
|
2016-05-18 23:18:29 +03:00
|
|
|
|
2020-08-11 05:23:12 +03:00
|
|
|
What is the dependency injection?
|
|
|
|
- dependency injection is a principle that decreases coupling and increases cohesion
|
2016-05-18 23:18:29 +03:00
|
|
|
|
2020-08-11 05:23:12 +03:00
|
|
|
Why should I do the dependency injection?
|
2021-09-30 22:03:19 +03:00
|
|
|
- your code becomes more flexible, testable, and clear 😎
|
2016-05-18 23:18:29 +03:00
|
|
|
|
2020-08-11 05:23:12 +03:00
|
|
|
How do I start doing the dependency injection?
|
|
|
|
- you start writing the code following the dependency injection principle
|
|
|
|
- you register all of your application components and their dependencies in the container
|
2020-10-09 22:16:27 +03:00
|
|
|
- when you need a component, you specify where to inject it or get it from the container
|
2016-01-11 12:14:37 +03:00
|
|
|
|
2020-08-11 05:23:12 +03:00
|
|
|
What price do I pay and what do I get?
|
2020-10-09 22:16:27 +03:00
|
|
|
- you need to explicitly specify the dependencies
|
2021-09-30 22:03:19 +03:00
|
|
|
- it will be an extra work in the beginning
|
2020-10-09 22:16:27 +03:00
|
|
|
- it will payoff as the project grows
|
2015-04-03 00:40:03 +03:00
|
|
|
|
2020-07-11 19:15:00 +03:00
|
|
|
Have a question?
|
2020-08-11 05:23:12 +03:00
|
|
|
- Open a `Github Issue <https://github.com/ets-labs/python-dependency-injector/issues>`_
|
2020-07-11 19:15:00 +03:00
|
|
|
|
|
|
|
Found a bug?
|
2020-08-11 05:23:12 +03:00
|
|
|
- Open a `Github Issue <https://github.com/ets-labs/python-dependency-injector/issues>`_
|
2020-07-11 19:15:00 +03:00
|
|
|
|
|
|
|
Want to help?
|
2020-08-11 05:23:12 +03:00
|
|
|
- |star| Star the ``Dependency Injector`` on the `Github <https://github.com/ets-labs/python-dependency-injector/>`_
|
|
|
|
- |new| Start a new project with the ``Dependency Injector``
|
|
|
|
- |tell| Tell your friend about the ``Dependency Injector``
|
2015-04-03 00:33:28 +03:00
|
|
|
|
2020-07-11 19:15:00 +03:00
|
|
|
Want to contribute?
|
2020-08-11 05:23:12 +03:00
|
|
|
- |fork| Fork the project
|
|
|
|
- |pull| Open a pull request to the ``develop`` branch
|
2015-04-03 00:29:00 +03:00
|
|
|
|
2020-01-27 04:37:13 +03:00
|
|
|
.. _PyPi: https://pypi.org/project/dependency-injector/
|
2020-07-11 20:02:30 +03:00
|
|
|
|
2020-07-11 20:15:27 +03:00
|
|
|
.. |star| unicode:: U+2B50 U+FE0F .. star sign1
|
2020-07-11 20:10:46 +03:00
|
|
|
.. |new| unicode:: U+1F195 .. new sign
|
|
|
|
.. |tell| unicode:: U+1F4AC .. tell sign
|
|
|
|
.. |fork| unicode:: U+1F500 .. fork sign
|
2020-07-11 20:15:27 +03:00
|
|
|
.. |pull| unicode:: U+2B05 U+FE0F .. pull sign
|