python-dependency-injector/README.rst

226 lines
7.6 KiB
ReStructuredText
Raw Normal View History

.. figure:: https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/logo.svg
|
.. image:: https://img.shields.io/pypi/v/dependency_injector.svg
:target: https://pypi.org/project/dependency-injector/
:alt: Latest Version
.. image:: https://img.shields.io/pypi/l/dependency_injector.svg
:target: https://pypi.org/project/dependency-injector/
:alt: License
.. image:: https://pepy.tech/badge/dependency-injector
:target: https://pepy.tech/project/dependency-injector
:alt: Downloads
.. image:: https://img.shields.io/pypi/pyversions/dependency_injector.svg
:target: https://pypi.org/project/dependency-injector/
:alt: Supported Python versions
.. image:: https://img.shields.io/pypi/implementation/dependency_injector.svg
:target: https://pypi.org/project/dependency-injector/
:alt: Supported Python implementations
.. image:: https://travis-ci.org/ets-labs/python-dependency-injector.svg?branch=master
:target: https://travis-ci.org/ets-labs/python-dependency-injector
:alt: Build Status
.. image:: http://readthedocs.org/projects/python-dependency-injector/badge/?version=latest
:target: http://python-dependency-injector.ets-labs.org/
:alt: Docs Status
.. 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-07 00:20:39 +03:00
``Dependency Injector`` is a Python dependency injection framework for Python.
2019-08-18 03:57:10 +03:00
It was designed to be a unified and developer-friendly tool that helps
implement a dependency injection design pattern in a formal, pretty, and
Pythonic way.
2019-08-18 03:57:10 +03:00
The key features of the *Dependency Injector* framework are:
2019-08-18 03:57:10 +03:00
+ Easy, smart, and pythonic style.
+ Obvious and clear structure.
+ Extensibility and flexibility.
2016-11-13 12:52:09 +03:00
+ High performance.
+ Memory efficiency.
+ Thread safety.
2019-08-18 03:57:10 +03:00
+ Documented.
+ Semantically versioned.
2017-03-26 22:45:05 +03:00
*Dependency Injector* containers and providers are implemented as C extension
types using Cython.
2016-11-11 18:05:25 +03:00
2015-08-31 16:31:38 +03:00
2020-01-27 03:04:23 +03:00
Installation
------------
The *Dependency Injector* library is available on `PyPi`_::
2020-01-27 03:33:28 +03:00
pip install dependency-injector
2020-01-27 03:04:23 +03:00
Documentation
-------------
2020-07-07 00:20:39 +03:00
Documentation is on `Read The Docs <http://python-dependency-injector.ets-labs.org/>`_
2020-01-27 03:04:23 +03:00
2016-10-07 17:33:51 +03:00
Dependency injection
2016-10-06 23:15:41 +03:00
--------------------
`Dependency injection`_ is a software design pattern that implements
2019-08-18 03:57:10 +03:00
`Inversion of control`_ to resolve dependencies. Formally, if object **A**
depends on object **B**, object **A** must not create or import object **B**
2019-08-18 03:57:10 +03:00
directly. Instead of this object **A** must provide a way to *inject*
object **B**. The responsibilities of objects creation and dependency
injection are delegated to external code - the *dependency injector*.
2019-08-18 03:57:10 +03:00
Popular terminology of the dependency injection pattern:
2019-08-18 03:57:10 +03:00
+ Object **A**, which depends on object **B**, is often called -
the *client*.
2019-08-18 03:57:10 +03:00
+ Object **B**, which is depended on, is often called - the *service*.
+ External code that is responsible for creation of objects and injection
of dependencies is often called - the *dependency injector*.
2019-08-18 03:57:10 +03:00
There are several ways to inject a *service* into a *client*:
2019-08-18 03:57:10 +03:00
+ by passing it as an ``__init__`` argument (constructor / initializer
injection)
+ by setting it as an attribute's value (attribute injection)
+ by passing it as a method's argument (method injection)
2019-08-18 03:57:10 +03:00
The dependency injection pattern has few strict rules that should be followed:
+ The *client* delegates to the *dependency injector* the responsibility
of injecting its dependencies - the *service(s)*.
+ The *client* doesn't know how to create the *service*, it knows only
2019-08-18 03:57:10 +03:00
the interface of the *service*. The *service* doesn't know that it is used by
2016-10-11 23:52:40 +03:00
the *client*.
+ The *dependency injector* knows how to create the *client* and
2019-08-18 03:57:10 +03:00
the *service*. It also knows that the *client* depends on the *service*,
and knows how to inject the *service* into the *client*.
+ The *client* and the *service* know nothing about the *dependency injector*.
2016-10-07 17:32:24 +03:00
2019-08-18 03:57:10 +03:00
The dependency injection pattern provides the following advantages:
2016-10-07 17:32:24 +03:00
2019-08-18 03:57:10 +03:00
+ Control of application structure.
+ Decreased coupling of application components.
2016-10-07 17:32:24 +03:00
+ Increased code reusability.
+ Increased testability.
+ Increased maintainability.
2019-08-18 03:57:10 +03:00
+ Reconfiguration of a system without rebuilding.
2017-01-30 00:30:38 +03:00
Dependency Injector in action
-----------------------------
2016-12-28 00:06:40 +03:00
2019-08-18 03:57:10 +03:00
The brief example below is a simplified version of inversion of control
containers from a real-life application. The example demonstrates the usage
of *Dependency Injector* inversion of control container and providers for
specifying application components and their dependencies on each other in one
module. Besides other previously mentioned advantages, it shows a great
opportunity to control and manage application's structure in one place.
2016-05-18 23:18:29 +03:00
2016-03-14 01:04:55 +03:00
.. code-block:: python
2016-10-06 22:48:43 +03:00
"""Example of dependency injection in Python."""
2016-10-06 22:48:43 +03:00
import logging
import sqlite3
2016-10-06 22:48:43 +03:00
2017-03-15 18:26:59 +03:00
import boto3
2016-09-18 23:00:10 +03:00
from dependency_injector import containers, providers
from example import services, main
2016-04-20 14:25:40 +03:00
class IocContainer(containers.DeclarativeContainer):
"""Application IoC container."""
2017-03-15 18:26:59 +03:00
config = providers.Configuration('config')
2016-10-06 22:48:43 +03:00
logger = providers.Singleton(logging.Logger, name='example')
# Gateways
database_client = providers.Singleton(sqlite3.connect, config.database.dsn)
s3_client = providers.Singleton(
2017-03-15 18:26:59 +03:00
boto3.client, 's3',
aws_access_key_id=config.aws.access_key_id,
aws_secret_access_key=config.aws.secret_access_key,
)
# Services
users_service = providers.Factory(
services.UsersService,
db=database_client,
logger=logger,
)
auth_service = providers.Factory(
services.AuthService,
token_ttl=config.auth.token_ttl,
db=database_client,
logger=logger,
)
2016-06-01 19:52:10 +03:00
photos_service = providers.Factory(
services.PhotosService,
db=database_client,
s3=s3_client,
logger=logger,
)
2016-05-18 23:18:29 +03:00
# Misc
2016-05-18 23:18:29 +03:00
main = providers.Callable(
main.main,
users_service=users_service,
auth_service=auth_service,
photos_service=photos_service,
)
2016-05-18 23:18:29 +03:00
2019-08-18 03:57:10 +03:00
The next example demonstrates a run of the example application defined above:
2016-09-18 23:00:10 +03:00
.. code-block:: python
"""Run example of dependency injection in Python."""
2016-09-18 23:00:10 +03:00
2016-10-06 22:48:43 +03:00
import sys
import logging
from container import IocContainer
2016-04-20 14:19:54 +03:00
if __name__ == '__main__':
# Configure container:
container = IocContainer(
config={
'database': {
'dsn': ':memory:',
},
'aws': {
'access_key_id': 'KEY',
'secret_access_key': 'SECRET',
},
'auth': {
'token_ttl': 3600,
},
}
)
container.logger().addHandler(logging.StreamHandler(sys.stdout))
2016-10-06 22:48:43 +03:00
# Run application:
container.main(*sys.argv[1:])
2016-09-18 23:00:10 +03:00
2019-08-18 03:57:10 +03:00
You can find more *Dependency Injector* examples in the ``/examples`` directory
on our GitHub:
2015-04-03 00:40:03 +03:00
2016-04-25 11:07:47 +03:00
https://github.com/ets-labs/python-dependency-injector
2015-04-03 00:35:22 +03:00
2015-04-03 00:29:00 +03:00
.. _Dependency injection: http://en.wikipedia.org/wiki/Dependency_injection
.. _Inversion of control: https://en.wikipedia.org/wiki/Inversion_of_control
2020-01-27 04:37:13 +03:00
.. _PyPi: https://pypi.org/project/dependency-injector/
2017-01-11 01:09:43 +03:00
.. _User's guide: http://python-dependency-injector.ets-labs.org/
.. _API docs: http://python-dependency-injector.ets-labs.org/api/