Dependency injection framework for Python
Go to file
2016-05-18 15:07:48 +03:00
dependency_injector Restore Callable positional & keyword argument injections via __init__(*args, **kwargs) 2016-05-18 15:07:48 +03:00
docs Drop method injections 2016-05-17 22:37:50 +03:00
examples Release 1.16.7 2016-04-26 13:14:39 +03:00
tests Sanitize callable and creational provider tests 2016-05-18 01:17:39 +03:00
.coveragerc Rename Objects to Dependency Injector 2015-08-31 16:31:38 +03:00
.gitignore Updating gitignore 2015-07-06 16:53:09 +03:00
.pylintrc adding pylint settings file 2015-03-11 15:39:28 +02:00
.travis.yml Replace pep257 with pydocstyle 2016-02-28 16:01:20 +02:00
CONTRIBUTORS.rst Transfer to ETS Labs 2016-01-11 10:53:35 +02:00
LICENSE.rst Transfer to ETS Labs 2016-01-11 10:53:35 +02:00
MANIFEST.in Transfer to ETS Labs 2016-01-11 10:53:35 +02:00
README.rst Update repositary url 2016-04-25 11:07:47 +03:00
requirements-dev.txt Update development requirements 2016-04-26 13:15:00 +03:00
requirements.txt Add support of six-1.10.0 2015-10-12 18:25:21 +03:00
setup.py Update repositary url 2016-04-25 11:07:47 +03:00
tox.ini Replace pep257 with pydocstyle 2016-02-28 16:01:20 +02:00

===========================================================
Dependency Injector - Python dependency injection framework
===========================================================

*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
------

+---------------------------------------+----------------------------------------------------------------------------------------+
| *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                                                               |
+---------------------------------------+----------------------------------------------------------------------------------------+

Installation
------------

*Dependency Injector* library is available on PyPi_::

    pip install dependency_injector

Example
-------

.. code-block:: python

    """Dependency Injector example."""

    import sys
    import sqlite3

    from boto.s3.connection import S3Connection

    from dependency_injector import catalogs
    from dependency_injector import providers
    from dependency_injector import injections

    from example import services


    class Platform(catalogs.DeclarativeCatalog):
        """Catalog of platform service providers."""

        database = providers.Singleton(sqlite3.connect, ':memory:')

        s3 = providers.Singleton(S3Connection,
                                 aws_access_key_id='KEY',
                                 aws_secret_access_key='SECRET')


    class Services(catalogs.DeclarativeCatalog):
        """Catalog of business service providers."""

        users = providers.Factory(services.Users,
                                  db=Platform.database)

        photos = providers.Factory(services.Photos,
                                   db=Platform.database,
                                   s3=Platform.s3)

        auth = providers.Factory(services.Auth,
                                 db=Platform.database,
                                 token_ttl=3600)


    @injections.inject(users_service=Services.users)
    @injections.inject(auth_service=Services.auth)
    @injections.inject(photos_service=Services.photos)
    def main(argv, users_service, auth_service, photos_service):
        """Main function."""
        login, password, photo_path = argv[1:]

        user = users_service.get_user(login)
        auth_service.authenticate(user, password)
        photos_service.upload_photo(user['id'], photo_path)


    if __name__ == '__main__':
        main(sys.argv)

You can get more *Dependency Injector* examples in ``/examples`` directory on
GitHub:

    https://github.com/ets-labs/python-dependency-injector

Documentation
-------------

*Dependency Injector* documentation is hosted on ReadTheDocs:

- `User's guide`_ 
- `API docs`_

Feedback
--------

Feel free to post questions, bugs, feature requests, proposals etc. on
*Dependency Injector*  GitHub Issues:

    https://github.com/ets-labs/python-dependency-injector/issues

Your feedback is quite important!


.. _PyPi: https://pypi.python.org/pypi/dependency_injector
.. _User's guide: http://python-dependency-injector.ets-labs.org/en/stable/
.. _API docs: http://python-dependency-injector.ets-labs.org/en/stable/api/
.. _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