2016-10-12 10:45:15 +03:00
|
|
|
====================================================================
|
|
|
|
Dependency Injector - Dependency injection microframework for Python
|
|
|
|
====================================================================
|
2015-04-03 00:29:00 +03:00
|
|
|
|
2016-10-12 10:41:50 +03:00
|
|
|
*Dependency Injector* is a dependency injection microframework 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.
|
2016-02-04 23:47:45 +03:00
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
The key features of the *Dependency Injector* framework are:
|
2016-02-04 23:47:45 +03:00
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
+ Easy, smart, and pythonic style.
|
|
|
|
+ Obvious and clear structure.
|
2016-03-31 00:40:49 +03:00
|
|
|
+ Extensibility and flexibility.
|
2016-11-13 12:52:09 +03:00
|
|
|
+ High performance.
|
2016-03-31 00:40:49 +03:00
|
|
|
+ Memory efficiency.
|
|
|
|
+ Thread safety.
|
2019-08-18 03:57:10 +03:00
|
|
|
+ Documented.
|
|
|
|
+ Semantically versioned.
|
2016-02-04 23:47:45 +03:00
|
|
|
|
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
|
|
|
|
2016-02-04 23:47:45 +03:00
|
|
|
Status
|
|
|
|
------
|
2015-04-03 00:29:00 +03:00
|
|
|
|
2016-10-19 14:58:11 +03:00
|
|
|
+---------------------------------------+--------------------------------------------------------------------------------------------------------------------+
|
|
|
|
| *PyPi* | .. image:: https://img.shields.io/pypi/v/dependency_injector.svg |
|
|
|
|
| | :target: https://pypi.python.org/pypi/dependency_injector/ |
|
|
|
|
| | :alt: Latest Version |
|
|
|
|
| | .. image:: https://img.shields.io/pypi/l/dependency_injector.svg |
|
|
|
|
| | :target: https://pypi.python.org/pypi/dependency_injector/ |
|
|
|
|
| | :alt: License |
|
|
|
|
+---------------------------------------+--------------------------------------------------------------------------------------------------------------------+
|
|
|
|
| *Python versions and implementations* | .. image:: https://img.shields.io/pypi/pyversions/dependency_injector.svg |
|
|
|
|
| | :target: https://pypi.python.org/pypi/dependency_injector/ |
|
|
|
|
| | :alt: Supported Python versions |
|
|
|
|
| | .. image:: https://img.shields.io/pypi/implementation/dependency_injector.svg |
|
|
|
|
| | :target: https://pypi.python.org/pypi/dependency_injector/ |
|
|
|
|
| | :alt: Supported Python implementations |
|
|
|
|
+---------------------------------------+--------------------------------------------------------------------------------------------------------------------+
|
|
|
|
| *Builds and tests coverage* | .. 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 |
|
2017-12-25 21:34:39 +03:00
|
|
|
| | .. image:: http://readthedocs.org/projects/python-dependency-injector/badge/?version=latest |
|
|
|
|
| | :target: http://python-dependency-injector.ets-labs.org/ |
|
|
|
|
| | :alt: Docs Status |
|
2017-05-08 19:05:02 +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 |
|
2016-10-19 14:58:11 +03:00
|
|
|
| | :alt: Coverage Status |
|
|
|
|
+---------------------------------------+--------------------------------------------------------------------------------------------------------------------+
|
|
|
|
| *Github* | .. image:: https://img.shields.io/github/watchers/ets-labs/python-dependency-injector.svg?style=social&label=Watch |
|
|
|
|
| | :target: https://github.com/ets-labs/python-dependency-injector |
|
|
|
|
| | :alt: Github watchers |
|
|
|
|
| | .. image:: https://img.shields.io/github/stars/ets-labs/python-dependency-injector.svg?style=social&label=Star |
|
|
|
|
| | :target: https://github.com/ets-labs/python-dependency-injector |
|
|
|
|
| | :alt: Github stargazers |
|
|
|
|
| | .. image:: https://img.shields.io/github/forks/ets-labs/python-dependency-injector.svg?style=social&label=Fork |
|
|
|
|
| | :target: https://github.com/ets-labs/python-dependency-injector |
|
|
|
|
| | :alt: Github forks |
|
|
|
|
+---------------------------------------+--------------------------------------------------------------------------------------------------------------------+
|
2015-08-31 16:31:38 +03:00
|
|
|
|
2016-10-07 17:33:51 +03:00
|
|
|
Dependency injection
|
2016-10-06 23:15:41 +03:00
|
|
|
--------------------
|
|
|
|
|
2016-10-07 14:52:28 +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**
|
2016-10-11 16:55:33 +03:00
|
|
|
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
|
2016-10-11 16:55:33 +03:00
|
|
|
injection are delegated to external code - the *dependency injector*.
|
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
Popular terminology of the dependency injection pattern:
|
2016-10-11 16:55:33 +03:00
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
+ Object **A**, which depends on object **B**, is often called -
|
2016-10-11 16:55:33 +03:00
|
|
|
the *client*.
|
2019-08-18 03:57:10 +03:00
|
|
|
+ Object **B**, which is depended on, is often called - the *service*.
|
2016-10-11 16:55:33 +03:00
|
|
|
+ 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*:
|
2016-10-11 16:55:33 +03:00
|
|
|
|
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)
|
2016-10-07 14:52:28 +03:00
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
The dependency injection pattern has few strict rules that should be followed:
|
2016-10-07 14:52:28 +03:00
|
|
|
|
2016-10-11 16:55:33 +03:00
|
|
|
+ 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*.
|
2016-10-11 16:55:33 +03:00
|
|
|
+ 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*,
|
2016-10-11 16:55:33 +03:00
|
|
|
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.
|
2016-10-07 14:52:28 +03:00
|
|
|
|
2016-10-06 23:15:41 +03:00
|
|
|
Example of dependency injection
|
|
|
|
-------------------------------
|
2015-04-03 00:35:22 +03:00
|
|
|
|
2016-12-28 00:06:40 +03:00
|
|
|
Let's go through next example:
|
|
|
|
|
|
|
|
.. image:: https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/engines_cars/diagram.png
|
|
|
|
:width: 100%
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
Listing of ``example.engines`` module:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
"""Dependency injection example, engines module."""
|
|
|
|
|
|
|
|
|
|
|
|
class Engine(object):
|
|
|
|
"""Example engine base class.
|
|
|
|
|
|
|
|
Engine is a heart of every car. Engine is a very common term and could be
|
|
|
|
implemented in very different ways.
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
class GasolineEngine(Engine):
|
|
|
|
"""Gasoline engine."""
|
|
|
|
|
|
|
|
|
|
|
|
class DieselEngine(Engine):
|
|
|
|
"""Diesel engine."""
|
|
|
|
|
|
|
|
|
|
|
|
class ElectroEngine(Engine):
|
|
|
|
"""Electro engine."""
|
|
|
|
|
|
|
|
Listing of ``example.cars`` module:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
"""Dependency injection example, cars module."""
|
|
|
|
|
|
|
|
|
|
|
|
class Car(object):
|
|
|
|
"""Example car."""
|
|
|
|
|
|
|
|
def __init__(self, engine):
|
|
|
|
"""Initializer."""
|
|
|
|
self._engine = engine # Engine is injected
|
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
The next example demonstrates the creation of several cars with different engines:
|
2016-12-28 00:06:40 +03:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
"""Dependency injection example, Cars & Engines."""
|
|
|
|
|
|
|
|
import example.cars
|
|
|
|
import example.engines
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
gasoline_car = example.cars.Car(example.engines.GasolineEngine())
|
|
|
|
diesel_car = example.cars.Car(example.engines.DieselEngine())
|
|
|
|
electro_car = example.cars.Car(example.engines.ElectroEngine())
|
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
While the previous example demonstrates the advantages of dependency injection,
|
|
|
|
there is a disadvantage demonstrated as well - the creation of a car requires
|
|
|
|
additional code to specificaty its dependencies. However, this disadvantage
|
|
|
|
could be avoided by using a dependency injection framework for the creation of
|
|
|
|
an inversion of control container (IoC container).
|
2016-12-28 00:06:40 +03:00
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
Here's an example of the creation of several inversion of control containers
|
|
|
|
(IoC containers) using *Dependency Injector*:
|
2016-12-28 00:06:40 +03:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
"""Dependency injection example, Cars & Engines IoC containers."""
|
|
|
|
|
|
|
|
import example.cars
|
|
|
|
import example.engines
|
|
|
|
|
|
|
|
import dependency_injector.containers as containers
|
|
|
|
import dependency_injector.providers as providers
|
|
|
|
|
|
|
|
|
|
|
|
class Engines(containers.DeclarativeContainer):
|
|
|
|
"""IoC container of engine providers."""
|
|
|
|
|
|
|
|
gasoline = providers.Factory(example.engines.GasolineEngine)
|
|
|
|
|
|
|
|
diesel = providers.Factory(example.engines.DieselEngine)
|
|
|
|
|
|
|
|
electro = providers.Factory(example.engines.ElectroEngine)
|
|
|
|
|
|
|
|
|
|
|
|
class Cars(containers.DeclarativeContainer):
|
|
|
|
"""IoC container of car providers."""
|
|
|
|
|
|
|
|
gasoline = providers.Factory(example.cars.Car,
|
|
|
|
engine=Engines.gasoline)
|
|
|
|
|
|
|
|
diesel = providers.Factory(example.cars.Car,
|
|
|
|
engine=Engines.diesel)
|
|
|
|
|
|
|
|
electro = providers.Factory(example.cars.Car,
|
|
|
|
engine=Engines.electro)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
gasoline_car = Cars.gasoline()
|
|
|
|
diesel_car = Cars.diesel()
|
|
|
|
electro_car = Cars.electro()
|
|
|
|
|
2017-01-30 00:30:38 +03:00
|
|
|
Dependency Injector structure
|
|
|
|
-----------------------------
|
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
*Dependency Injector* is a microframework and has a simple structure.
|
2017-01-30 00:30:38 +03:00
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
There are two main entities: providers and containers.
|
2017-01-30 00:30:38 +03:00
|
|
|
|
|
|
|
.. image:: https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/internals.png
|
|
|
|
:width: 100%
|
|
|
|
:align: center
|
|
|
|
|
|
|
|
Providers
|
|
|
|
~~~~~~~~~
|
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
Providers describe strategies of accessing objects. They define how particular
|
2017-01-30 00:30:38 +03:00
|
|
|
objects are provided.
|
|
|
|
|
|
|
|
- **Provider** - base provider class.
|
2019-08-18 03:57:10 +03:00
|
|
|
- **Callable** - provider that calls a wrapped callable on every call. Supports
|
|
|
|
positional and keyword argument injections.
|
2017-01-30 00:30:38 +03:00
|
|
|
- **Factory** - provider that creates new instance of specified class on every
|
2019-08-18 03:57:10 +03:00
|
|
|
call. Supports positional and keyword argument injections, as well as
|
2017-01-30 00:30:38 +03:00
|
|
|
attribute injections.
|
2019-08-18 03:57:10 +03:00
|
|
|
- **Singleton** - provider that creates new instance of specified class on its
|
|
|
|
first call and returns the same instance on every next call. Supports
|
|
|
|
position and keyword argument injections, as well as attribute injections.
|
2017-01-30 00:30:38 +03:00
|
|
|
- **Object** - provider that returns provided instance "as is".
|
|
|
|
- **ExternalDependency** - provider that can be useful for development of
|
2019-08-18 03:57:10 +03:00
|
|
|
self-sufficient libraries, modules, and applications that require external
|
|
|
|
dependencies.
|
2017-01-30 00:30:38 +03:00
|
|
|
- **Configuration** - provider that helps with implementing late static binding
|
|
|
|
of configuration options - use first, define later.
|
|
|
|
|
|
|
|
Containers
|
|
|
|
~~~~~~~~~~
|
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
Containers are collections of providers. The main purpose of containers is to
|
2017-01-30 00:30:38 +03:00
|
|
|
group providers.
|
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
- **DeclarativeContainer** - is an inversion of control container that can be
|
|
|
|
defined in a declarative manner. It covers most of the cases where a list of
|
|
|
|
providers that is be included in a container is deterministic
|
|
|
|
(that means the container will not change its structure in runtime).
|
|
|
|
- **DynamicContainer** - is an inversion of control container with a dynamic
|
|
|
|
structure. It covers most of the cases where a list of providers that
|
|
|
|
would be included in container is non-deterministic and depends on the
|
2017-01-30 00:30:38 +03:00
|
|
|
application's flow or its configuration (container's structure could be
|
2019-08-18 03:57:10 +03:00
|
|
|
determined just after the application starts and might perform some initial
|
|
|
|
work, like parsing a list of container providers from a configuration).
|
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-03-09 11:49:49 +03:00
|
|
|
|
2016-10-06 22:48:43 +03:00
|
|
|
import logging
|
2016-03-09 11:49:49 +03:00
|
|
|
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
|
|
|
|
2018-07-02 16:43:23 +03:00
|
|
|
from dependency_injector import containers, providers
|
|
|
|
from example import services, main
|
2016-04-20 14:25:40 +03:00
|
|
|
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
class IocContainer(containers.DeclarativeContainer):
|
|
|
|
"""Application IoC container."""
|
2016-03-09 11:49:49 +03:00
|
|
|
|
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')
|
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
# Gateways
|
2016-12-02 21:59:12 +03:00
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
database_client = providers.Singleton(sqlite3.connect, config.database.dsn)
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
s3_client = providers.Singleton(
|
2017-03-15 18:26:59 +03:00
|
|
|
boto3.client, 's3',
|
2018-06-27 17:37:03 +03:00
|
|
|
aws_access_key_id=config.aws.access_key_id,
|
2018-07-03 12:39:43 +03:00
|
|
|
aws_secret_access_key=config.aws.secret_access_key,
|
2018-07-02 16:43:23 +03:00
|
|
|
)
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
# Services
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
users_service = providers.Factory(
|
2018-07-02 16:43:23 +03:00
|
|
|
services.UsersService,
|
2018-06-27 17:37:03 +03:00
|
|
|
db=database_client,
|
2018-07-03 12:39:43 +03:00
|
|
|
logger=logger,
|
2018-07-02 16:43:23 +03:00
|
|
|
)
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
auth_service = providers.Factory(
|
2018-07-02 16:43:23 +03:00
|
|
|
services.AuthService,
|
2018-06-27 17:37:03 +03:00
|
|
|
token_ttl=config.auth.token_ttl,
|
|
|
|
db=database_client,
|
2018-07-03 12:39:43 +03:00
|
|
|
logger=logger,
|
2018-07-02 16:43:23 +03:00
|
|
|
)
|
2016-06-01 19:52:10 +03:00
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
photos_service = providers.Factory(
|
2018-07-02 16:43:23 +03:00
|
|
|
services.PhotosService,
|
2018-06-27 17:37:03 +03:00
|
|
|
db=database_client,
|
|
|
|
s3=s3_client,
|
2018-07-03 12:39:43 +03:00
|
|
|
logger=logger,
|
2018-07-02 16:43:23 +03:00
|
|
|
)
|
2016-05-18 23:18:29 +03:00
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
# Misc
|
2016-05-18 23:18:29 +03:00
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
main = providers.Callable(
|
2018-07-02 16:43:23 +03:00
|
|
|
main.main,
|
2018-06-27 17:37:03 +03:00
|
|
|
users_service=users_service,
|
|
|
|
auth_service=auth_service,
|
2018-07-03 12:39:43 +03:00
|
|
|
photos_service=photos_service,
|
2018-07-02 16:43:23 +03:00
|
|
|
)
|
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-03-09 11:49:49 +03:00
|
|
|
|
2016-09-18 23:00:10 +03:00
|
|
|
.. code-block:: python
|
2016-01-11 12:14:37 +03:00
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
"""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
|
|
|
|
|
2018-06-27 17:37:03 +03:00
|
|
|
from container import IocContainer
|
2016-01-11 12:14:37 +03:00
|
|
|
|
|
|
|
|
2016-04-20 14:19:54 +03:00
|
|
|
if __name__ == '__main__':
|
2018-07-02 16:43:23 +03:00
|
|
|
# Configure container:
|
2018-06-27 17:37:03 +03:00
|
|
|
container = IocContainer(
|
2018-07-02 16:43:23 +03:00
|
|
|
config={
|
|
|
|
'database': {
|
2018-07-03 12:39:43 +03:00
|
|
|
'dsn': ':memory:',
|
2018-07-02 16:43:23 +03:00
|
|
|
},
|
|
|
|
'aws': {
|
|
|
|
'access_key_id': 'KEY',
|
2018-07-03 12:39:43 +03:00
|
|
|
'secret_access_key': 'SECRET',
|
2018-07-02 16:43:23 +03:00
|
|
|
},
|
|
|
|
'auth': {
|
2018-07-03 12:39:43 +03:00
|
|
|
'token_ttl': 3600,
|
|
|
|
},
|
2018-07-02 16:43:23 +03:00
|
|
|
}
|
|
|
|
)
|
2018-06-27 17:37:03 +03:00
|
|
|
container.logger().addHandler(logging.StreamHandler(sys.stdout))
|
2016-10-06 22:48:43 +03:00
|
|
|
|
|
|
|
# Run application:
|
2018-07-02 16:43:23 +03:00
|
|
|
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
|
|
|
|
2016-10-07 17:32:24 +03:00
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
The *Dependency Injector* library is available on `PyPi`_::
|
2016-10-07 17:32:24 +03:00
|
|
|
|
|
|
|
pip install dependency_injector
|
|
|
|
|
2016-04-17 15:55:38 +03:00
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
The *Dependency Injector* documentation is hosted on ReadTheDocs:
|
2016-04-17 15:55:38 +03:00
|
|
|
|
|
|
|
- `User's guide`_
|
|
|
|
- `API docs`_
|
2015-04-03 00:35:22 +03:00
|
|
|
|
2016-10-07 17:33:51 +03:00
|
|
|
Feedback & Support
|
|
|
|
------------------
|
2015-04-03 00:33:28 +03:00
|
|
|
|
2019-08-18 03:57:10 +03:00
|
|
|
Feel free to post questions, bugs, feature requests, proposals, etc. on
|
|
|
|
the *Dependency Injector* GitHub issues page:
|
2015-04-03 00:33:28 +03:00
|
|
|
|
2016-04-25 11:07:47 +03:00
|
|
|
https://github.com/ets-labs/python-dependency-injector/issues
|
2015-04-03 00:33:28 +03:00
|
|
|
|
|
|
|
Your feedback is quite important!
|
|
|
|
|
2015-04-03 00:29:00 +03:00
|
|
|
|
2016-10-07 14:52:28 +03:00
|
|
|
.. _Dependency injection: http://en.wikipedia.org/wiki/Dependency_injection
|
|
|
|
.. _Inversion of control: https://en.wikipedia.org/wiki/Inversion_of_control
|
2015-08-31 16:31:38 +03:00
|
|
|
.. _PyPi: https://pypi.python.org/pypi/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/
|