2016-03-17 03:12:34 +03:00
|
|
|
===========================================================
|
|
|
|
Dependency Injector - Python dependency injection framework
|
|
|
|
===========================================================
|
2015-04-03 00:29:00 +03:00
|
|
|
|
2016-02-04 23:47:45 +03:00
|
|
|
*Dependency Injector* is a Python dependency injection framework. It was
|
2016-03-31 00:40:49 +03:00
|
|
|
designed to be unified, developer-friendly tool for managing any kind
|
2016-02-04 23:47:45 +03:00
|
|
|
of Python objects and their dependencies in formal, pretty way.
|
|
|
|
|
2016-03-31 00:40:49 +03:00
|
|
|
*Dependency Injector* framework key features are:
|
2016-02-04 23:47:45 +03:00
|
|
|
|
2016-03-31 00:40:49 +03:00
|
|
|
+ Easy, smart, pythonic style.
|
|
|
|
+ Obvious, clear structure.
|
|
|
|
+ Extensibility and flexibility.
|
|
|
|
+ Memory efficiency.
|
|
|
|
+ Thread safety.
|
|
|
|
+ Documentation.
|
|
|
|
+ Semantic versioning.
|
2016-02-04 23:47:45 +03:00
|
|
|
|
|
|
|
Status
|
|
|
|
------
|
2015-04-03 00:29:00 +03:00
|
|
|
|
2016-04-25 11:07:47 +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/dm/dependency_injector.svg |
|
|
|
|
| | :target: https://pypi.python.org/pypi/dependency_injector/ |
|
|
|
|
| | :alt: Downloads |
|
|
|
|
| | .. 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 |
|
|
|
|
| | .. image:: https://coveralls.io/repos/ets-labs/python-dependency-injector/badge.svg |
|
|
|
|
| | :target: https://coveralls.io/r/ets-labs/python-dependency-injector |
|
|
|
|
| | :alt: Coverage Status |
|
|
|
|
+---------------------------------------+----------------------------------------------------------------------------------------+
|
2015-08-31 16:31:38 +03:00
|
|
|
|
2015-04-03 00:29:00 +03:00
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
2015-08-31 16:31:38 +03:00
|
|
|
*Dependency Injector* library is available on PyPi_::
|
2015-04-03 00:29:00 +03:00
|
|
|
|
2015-08-31 16:31:38 +03:00
|
|
|
pip install dependency_injector
|
2015-04-03 00:29:00 +03:00
|
|
|
|
2016-04-20 14:25:40 +03:00
|
|
|
Example
|
|
|
|
-------
|
2015-04-03 00:35:22 +03:00
|
|
|
|
2016-05-18 23:18:29 +03:00
|
|
|
Brief example below demonstrates usage of *Dependency Injector* catalogs and
|
|
|
|
providers for definition of several IoC containers for some microservice
|
|
|
|
system that consists from several business and platform services:
|
|
|
|
|
2016-03-14 01:04:55 +03:00
|
|
|
.. code-block:: python
|
|
|
|
|
2016-05-22 16:02:10 +03:00
|
|
|
"""Example of several Dependency Injector IoC containers."""
|
2016-03-09 11:49:49 +03:00
|
|
|
|
|
|
|
import sqlite3
|
2016-05-18 23:18:29 +03:00
|
|
|
import boto.s3.connection
|
|
|
|
import example.services
|
2016-03-09 11:49:49 +03:00
|
|
|
|
|
|
|
from dependency_injector import catalogs
|
|
|
|
from dependency_injector import providers
|
2016-04-20 14:25:40 +03:00
|
|
|
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2016-04-20 14:19:54 +03:00
|
|
|
class Platform(catalogs.DeclarativeCatalog):
|
|
|
|
"""Catalog of platform service providers."""
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2016-04-20 14:19:54 +03:00
|
|
|
database = providers.Singleton(sqlite3.connect, ':memory:')
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2016-05-18 23:18:29 +03:00
|
|
|
s3 = providers.Singleton(boto.s3.connection.S3Connection,
|
2016-04-20 14:19:54 +03:00
|
|
|
aws_access_key_id='KEY',
|
|
|
|
aws_secret_access_key='SECRET')
|
2016-03-09 11:49:49 +03:00
|
|
|
|
|
|
|
|
|
|
|
class Services(catalogs.DeclarativeCatalog):
|
2016-04-20 14:19:54 +03:00
|
|
|
"""Catalog of business service providers."""
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2016-05-18 23:18:29 +03:00
|
|
|
users = providers.Factory(example.services.Users,
|
2016-04-20 14:19:54 +03:00
|
|
|
db=Platform.database)
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2016-05-18 23:18:29 +03:00
|
|
|
photos = providers.Factory(example.services.Photos,
|
2016-04-20 14:19:54 +03:00
|
|
|
db=Platform.database,
|
|
|
|
s3=Platform.s3)
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2016-05-18 23:18:29 +03:00
|
|
|
auth = providers.Factory(example.services.Auth,
|
2016-04-20 14:19:54 +03:00
|
|
|
db=Platform.database,
|
|
|
|
token_ttl=3600)
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2016-05-22 16:02:10 +03:00
|
|
|
Next example demonstrates usage of ``@inject`` decorator with IoC containers
|
|
|
|
defined above:
|
2016-05-18 23:18:29 +03:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
2016-05-22 16:02:10 +03:00
|
|
|
"""Dependency Injector @inject decorator example."""
|
2016-05-18 23:18:29 +03:00
|
|
|
|
|
|
|
from dependency_injector.injections import inject
|
|
|
|
|
|
|
|
from catalogs import Services
|
2016-03-09 11:49:49 +03:00
|
|
|
|
2016-01-11 12:14:37 +03:00
|
|
|
|
2016-05-18 23:18:29 +03:00
|
|
|
@inject(users_service=Services.users)
|
|
|
|
@inject(auth_service=Services.auth)
|
|
|
|
@inject(photos_service=Services.photos)
|
2016-05-22 16:02:10 +03:00
|
|
|
def main(users_service, auth_service, photos_service):
|
2016-05-18 23:18:29 +03:00
|
|
|
"""Main function."""
|
2016-05-22 16:02:10 +03:00
|
|
|
user = users_service.get_user('user')
|
|
|
|
auth_service.authenticate(user, 'secret')
|
|
|
|
photos_service.upload_photo(user['id'], 'photo.jpg')
|
2016-01-11 12:14:37 +03:00
|
|
|
|
|
|
|
|
2016-04-20 14:19:54 +03:00
|
|
|
if __name__ == '__main__':
|
2016-05-22 16:02:10 +03:00
|
|
|
main()
|
|
|
|
|
|
|
|
Alternative definition styles
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2016-05-18 23:18:29 +03:00
|
|
|
|
2016-05-22 16:02:10 +03:00
|
|
|
*Dependecy Injector* supports few other styles of dependency injections
|
|
|
|
definition.
|
|
|
|
|
2016-05-22 16:19:43 +03:00
|
|
|
IoC containers from previous example could look like these:
|
2016-05-18 23:18:29 +03:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
class Platform(catalogs.DeclarativeCatalog):
|
|
|
|
"""Catalog of platform service providers."""
|
|
|
|
|
|
|
|
database = providers.Singleton(sqlite3.connect) \
|
|
|
|
.args(':memory:')
|
|
|
|
|
|
|
|
s3 = providers.Singleton(boto.s3.connection.S3Connection) \
|
|
|
|
.kwargs(aws_access_key_id='KEY',
|
|
|
|
aws_secret_access_key='SECRET')
|
|
|
|
|
2016-05-22 16:19:43 +03:00
|
|
|
|
|
|
|
class Services(catalogs.DeclarativeCatalog):
|
|
|
|
"""Catalog of business service providers."""
|
|
|
|
|
|
|
|
users = providers.Factory(example.services.Users) \
|
|
|
|
.kwargs(db=Platform.database)
|
|
|
|
|
|
|
|
photos = providers.Factory(example.services.Photos) \
|
|
|
|
.kwargs(db=Platform.database,
|
|
|
|
s3=Platform.s3)
|
|
|
|
|
|
|
|
auth = providers.Factory(example.services.Auth) \
|
|
|
|
.kwargs(db=Platform.database,
|
|
|
|
token_ttl=3600)
|
|
|
|
|
|
|
|
or like this these:
|
2016-05-18 23:18:29 +03:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
class Platform(catalogs.DeclarativeCatalog):
|
|
|
|
"""Catalog of platform service providers."""
|
|
|
|
|
|
|
|
database = providers.Singleton(sqlite3.connect)
|
|
|
|
database.args(':memory:')
|
|
|
|
|
|
|
|
s3 = providers.Singleton(boto.s3.connection.S3Connection)
|
|
|
|
s3.kwargs(aws_access_key_id='KEY',
|
|
|
|
aws_secret_access_key='SECRET')
|
2016-01-11 12:14:37 +03:00
|
|
|
|
2016-05-22 16:19:43 +03:00
|
|
|
|
|
|
|
class Services(catalogs.DeclarativeCatalog):
|
|
|
|
"""Catalog of business service providers."""
|
|
|
|
|
|
|
|
users = providers.Factory(example.services.Users)
|
|
|
|
users.kwargs(db=Platform.database)
|
|
|
|
|
|
|
|
photos = providers.Factory(example.services.Photos)
|
|
|
|
photos.kwargs(db=Platform.database,
|
|
|
|
s3=Platform.s3)
|
|
|
|
|
|
|
|
auth = providers.Factory(example.services.Auth)
|
|
|
|
auth.kwargs(db=Platform.database,
|
|
|
|
token_ttl=3600)
|
|
|
|
|
2015-08-31 16:31:38 +03:00
|
|
|
You can get more *Dependency Injector* examples in ``/examples`` directory on
|
2015-04-03 00:40:03 +03:00
|
|
|
GitHub:
|
|
|
|
|
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-04-17 15:55:38 +03:00
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
|
|
|
|
*Dependency Injector* documentation is hosted on ReadTheDocs:
|
|
|
|
|
|
|
|
- `User's guide`_
|
|
|
|
- `API docs`_
|
2015-04-03 00:35:22 +03:00
|
|
|
|
2015-04-03 00:33:28 +03:00
|
|
|
Feedback
|
2015-04-03 00:35:22 +03:00
|
|
|
--------
|
2015-04-03 00:33:28 +03:00
|
|
|
|
|
|
|
Feel free to post questions, bugs, feature requests, proposals etc. on
|
2015-08-31 16:31:38 +03:00
|
|
|
*Dependency Injector* GitHub Issues:
|
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
|
|
|
|
2015-08-31 16:31:38 +03:00
|
|
|
.. _PyPi: https://pypi.python.org/pypi/dependency_injector
|
2016-04-25 11:07:47 +03:00
|
|
|
.. _User's guide: http://python-dependency-injector.ets-labs.org/en/stable/
|
|
|
|
.. _API docs: http://python-dependency-injector.ets-labs.org/en/stable/api/
|
2015-05-12 16:18:37 +03:00
|
|
|
.. _SLOC: http://en.wikipedia.org/wiki/Source_lines_of_code
|
|
|
|
.. _SOLID: http://en.wikipedia.org/wiki/SOLID_%28object-oriented_design%29
|
|
|
|
.. _IoC: http://en.wikipedia.org/wiki/Inversion_of_control
|
|
|
|
.. _dependency injection: http://en.wikipedia.org/wiki/Dependency_injection
|