python-dependency-injector/README.rst

195 lines
8.2 KiB
ReStructuredText
Raw Normal View History

2016-03-17 00:12:34 +00:00
===========================================================
Dependency Injector - Python dependency injection framework
===========================================================
2015-04-02 21:29:00 +00:00
*Dependency Injector* is a Python dependency injection framework. It was
designed to be unified, developer-friendly tool for managing any kind
of Python objects and their dependencies in formal, pretty way.
*Dependency Injector* framework key features are:
+ Easy, smart, pythonic style.
+ Obvious, clear structure.
+ Extensibility and flexibility.
+ Memory efficiency.
+ Thread safety.
+ Documentation.
+ Semantic versioning.
Status
------
2015-04-02 21:29:00 +00:00
2016-04-25 08:07:47 +00: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 |
| | .. 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 13:31:38 +00:00
2015-04-02 21:29:00 +00:00
Installation
------------
2015-08-31 13:31:38 +00:00
*Dependency Injector* library is available on PyPi_::
2015-04-02 21:29:00 +00:00
2015-08-31 13:31:38 +00:00
pip install dependency_injector
2015-04-02 21:29:00 +00:00
2016-04-20 11:25:40 +00:00
Example
-------
2015-04-02 21:35:22 +00:00
2016-05-27 11:39:25 +00:00
Brief example below demonstrates usage of *Dependency Injector* containers and
2016-05-18 20:18:29 +00:00
providers for definition of several IoC containers for some microservice
system that consists from several business and platform services:
2016-03-13 22:04:55 +00:00
.. code-block:: python
"""Example of several Dependency Injector IoC containers."""
import sqlite3
2016-05-18 20:18:29 +00:00
import boto.s3.connection
2016-09-18 20:00:10 +00:00
import example.main
2016-05-18 20:18:29 +00:00
import example.services
2016-06-01 16:52:10 +00:00
import dependency_injector.containers as containers
import dependency_injector.providers as providers
2016-04-20 11:25:40 +00:00
2016-05-27 11:39:25 +00:00
class Platform(containers.DeclarativeContainer):
"""IoC container of platform service providers."""
2016-04-20 11:19:54 +00:00
database = providers.Singleton(sqlite3.connect, ':memory:')
2016-05-18 20:18:29 +00:00
s3 = providers.Singleton(boto.s3.connection.S3Connection,
2016-04-20 11:19:54 +00:00
aws_access_key_id='KEY',
aws_secret_access_key='SECRET')
2016-05-27 11:39:25 +00:00
class Services(containers.DeclarativeContainer):
"""IoC container of business service providers."""
2016-05-18 20:18:29 +00:00
users = providers.Factory(example.services.Users,
2016-04-20 11:19:54 +00:00
db=Platform.database)
2016-05-18 20:18:29 +00:00
auth = providers.Factory(example.services.Auth,
2016-04-20 11:19:54 +00:00
db=Platform.database,
token_ttl=3600)
2016-06-01 16:52:10 +00:00
photos = providers.Factory(example.services.Photos,
db=Platform.database,
s3=Platform.s3)
2016-05-18 20:18:29 +00:00
2016-09-18 20:00:10 +00:00
class Application(containers.DeclarativeContainer):
"""IoC container of application component providers."""
2016-05-18 20:18:29 +00:00
2016-09-18 20:00:10 +00:00
main = providers.Callable(example.main.main,
users_service=Services.users,
auth_service=Services.auth,
photos_service=Services.photos)
2016-05-18 20:18:29 +00:00
2016-09-18 20:00:10 +00:00
Next example demonstrates usage of IoC containers & providers defined above:
2016-09-18 20:00:10 +00:00
.. code-block:: python
2016-09-18 20:00:10 +00:00
"""Run example application."""
import containers
2016-04-20 11:19:54 +00:00
if __name__ == '__main__':
2016-09-18 20:00:10 +00:00
containers.Application.main()
# Previous call is an equivalent of next operations:
#
# database = sqlite3.connect(':memory:')
# s3 = boto.s3.connection.S3Connection(aws_access_key_id='KEY',
# aws_secret_access_key='SECRET')
#
# example.main.main(users_service=example.services.Users(db=database),
# auth_service=example.services.Auth(db=database,
# token_ttl=3600),
# photos_service=example.services.Photos(db=database,
# s3=s3))
Alternative definition styles
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2016-05-18 20:18:29 +00:00
*Dependecy Injector* supports few other styles of dependency injections
definition.
IoC containers from previous example could look like these:
2016-05-18 20:18:29 +00:00
.. code-block:: python
2016-05-27 11:39:25 +00:00
class Platform(containers.DeclarativeContainer):
"""IoC container of platform service providers."""
2016-05-18 20:18:29 +00:00
database = providers.Singleton(sqlite3.connect) \
2016-05-29 13:39:39 +00:00
.add_args(':memory:')
2016-05-18 20:18:29 +00:00
s3 = providers.Singleton(boto.s3.connection.S3Connection) \
2016-05-29 13:39:39 +00:00
.add_kwargs(aws_access_key_id='KEY',
aws_secret_access_key='SECRET')
2016-05-18 20:18:29 +00:00
or like this these:
2016-05-18 20:18:29 +00:00
.. code-block:: python
2016-05-27 11:39:25 +00:00
class Platform(containers.DeclarativeContainer):
"""IoC container of platform service providers."""
2016-05-18 20:18:29 +00:00
database = providers.Singleton(sqlite3.connect)
2016-05-29 13:39:39 +00:00
database.add_args(':memory:')
2016-05-18 20:18:29 +00:00
s3 = providers.Singleton(boto.s3.connection.S3Connection)
2016-05-29 13:39:39 +00:00
s3.add_kwargs(aws_access_key_id='KEY',
aws_secret_access_key='SECRET')
2015-08-31 13:31:38 +00:00
You can get more *Dependency Injector* examples in ``/examples`` directory on
2015-04-02 21:40:03 +00:00
GitHub:
2016-04-25 08:07:47 +00:00
https://github.com/ets-labs/python-dependency-injector
2015-04-02 21:35:22 +00:00
Documentation
-------------
*Dependency Injector* documentation is hosted on ReadTheDocs:
- `User's guide`_
- `API docs`_
2015-04-02 21:35:22 +00:00
2015-04-02 21:33:28 +00:00
Feedback
2015-04-02 21:35:22 +00:00
--------
2015-04-02 21:33:28 +00:00
Feel free to post questions, bugs, feature requests, proposals etc. on
2015-08-31 13:31:38 +00:00
*Dependency Injector* GitHub Issues:
2015-04-02 21:33:28 +00:00
2016-04-25 08:07:47 +00:00
https://github.com/ets-labs/python-dependency-injector/issues
2015-04-02 21:33:28 +00:00
Your feedback is quite important!
2015-04-02 21:29:00 +00:00
2015-08-31 13:31:38 +00:00
.. _PyPi: https://pypi.python.org/pypi/dependency_injector
2016-04-25 08:07:47 +00: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 13:18:37 +00: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