python-dependency-injector/README.rst

159 lines
6.9 KiB
ReStructuredText
Raw Normal View History

2015-08-31 16:31:38 +03:00
Dependency Injector
===================
2015-04-03 00:29:00 +03:00
2015-05-12 16:18:37 +03:00
Dependency injection framework for Python projects.
2015-04-03 00:29:00 +03:00
2016-01-11 11:53:35 +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/dependency_injector.svg?branch=master |
| | :target: https://travis-ci.org/ets-labs/dependency_injector |
| | :alt: Build Status |
| | .. image:: https://coveralls.io/repos/ets-labs/dependency_injector/badge.svg |
| | :target: https://coveralls.io/r/ets-labs/dependency_injector |
| | :alt: Coverage Status |
+---------------------------------------+---------------------------------------------------------------------------------+
2015-08-31 16:31:38 +03:00
*Dependency Injector* is a dependency injection framework for Python projects.
2015-08-05 17:33:12 +03:00
It was designed to be unified, developer's friendly tool for managing any kind
of Python objects and their dependencies in formal, pretty way.
2015-04-03 00:29:00 +03:00
2015-08-31 16:31:38 +03:00
Below is a list of some key features and points of *Dependency Injector*
framework:
2015-05-12 16:18:37 +03:00
2015-08-05 17:33:12 +03:00
- Easy, smart, pythonic style.
- Obvious, clear structure.
- Memory efficiency.
2015-09-04 02:33:15 +03:00
- Thread safety.
2015-08-05 17:33:12 +03:00
- Semantic versioning.
2015-05-12 16:18:37 +03:00
2015-08-31 16:31:38 +03:00
Main idea of *Dependency Injector* is to keep dependencies under control.
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
Documentation
-------------
2015-08-31 16:31:38 +03:00
*Dependency Injector* documentation is hosted on ReadTheDocs:
2015-04-03 00:29:00 +03:00
2015-12-15 18:02:21 +03:00
- `User's guide`_
- `API docs`_
2015-04-03 00:29:00 +03:00
2015-04-03 00:35:22 +03:00
Examples
--------
.. code-block:: python
2015-08-31 16:31:38 +03:00
"""Concept example of `Dependency Injector`."""
2015-04-03 00:35:22 +03:00
import sqlite3
2015-11-23 20:09:35 +03:00
from dependency_injector import catalogs
from dependency_injector import providers
from dependency_injector import injections
2015-04-03 00:35:22 +03:00
2015-10-23 17:04:39 +03:00
class UsersService(object):
"""Users service, that has dependency on database."""
2015-04-03 00:35:22 +03:00
def __init__(self, db):
"""Initializer."""
self.db = db
2015-10-23 17:04:39 +03:00
class AuthService(object):
"""Auth service, that has dependencies on users service and database."""
2015-04-03 00:35:22 +03:00
2015-10-23 17:04:39 +03:00
def __init__(self, db, users_service):
2015-04-03 00:35:22 +03:00
"""Initializer."""
self.db = db
2015-10-23 17:04:39 +03:00
self.users_service = users_service
2015-04-03 00:35:22 +03:00
2015-11-23 20:09:35 +03:00
class Services(catalogs.DeclarativeCatalog):
2015-10-23 17:04:39 +03:00
"""Catalog of service providers."""
2015-04-03 00:35:22 +03:00
2015-12-11 12:39:47 +03:00
database = providers.Singleton(sqlite3.connect,
injections.Arg(':memory:'))
2015-11-23 20:09:35 +03:00
""":type: providers.Provider -> sqlite3.Connection"""
2015-04-03 00:35:22 +03:00
2015-11-23 20:09:35 +03:00
users = providers.Factory(UsersService,
2015-12-11 12:39:47 +03:00
injections.KwArg('db', database))
2015-11-23 20:09:35 +03:00
""":type: providers.Provider -> UsersService"""
2015-04-03 00:35:22 +03:00
2015-11-23 20:09:35 +03:00
auth = providers.Factory(AuthService,
2015-12-11 12:39:47 +03:00
injections.KwArg('db', database),
injections.KwArg('users_service', users))
2015-11-23 20:09:35 +03:00
""":type: providers.Provider -> AuthService"""
2015-04-03 00:35:22 +03:00
2015-10-23 17:04:39 +03:00
# Retrieving catalog providers:
users_service = Services.users()
auth_service = Services.auth()
2015-04-03 00:35:22 +03:00
2015-10-23 17:04:39 +03:00
# Making some asserts:
assert users_service.db is auth_service.db is Services.database()
assert isinstance(auth_service.users_service, UsersService)
assert users_service is not Services.users()
assert auth_service is not Services.auth()
2015-04-03 00:35:22 +03:00
2015-10-23 17:04:39 +03:00
# Making some "inline" injections:
2015-11-23 20:09:35 +03:00
@injections.inject(users_service=Services.users)
@injections.inject(auth_service=Services.auth)
@injections.inject(database=Services.database)
2015-10-23 17:04:39 +03:00
def example(users_service, auth_service, database):
2015-08-05 17:33:12 +03:00
"""Example callback."""
2015-10-23 17:04:39 +03:00
assert users_service.db is auth_service.db
assert auth_service.db is database
assert database is Services.database()
2015-04-03 00:35:22 +03:00
2015-10-23 17:04:39 +03:00
# Making a call of decorated callback:
2015-04-03 00:35:22 +03:00
example()
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-01-11 11:53:35 +03:00
https://github.com/ets-labs/dependency_injector
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-01-11 11:53:35 +03:00
https://github.com/ets-labs/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
2015-12-15 18:02:21 +03:00
.. _User's guide: http://dependency_injector.readthedocs.org/en/stable/
.. _API docs: http://dependency-injector.readthedocs.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