Dependency injection framework for Python
Go to file
2020-07-07 15:23:21 -04:00
docs Bump version to 3.19.2 2020-07-02 22:08:12 -04:00
examples Improve List and Configuration provider docs 2020-06-29 16:32:48 -04:00
src/dependency_injector Bump version to 3.19.2 2020-07-02 22:08:12 -04:00
tests Selector provider (#258) 2020-06-29 16:32:12 -04:00
.coveragerc Clean up and final fixes 2016-11-02 23:55:14 +02:00
.gitignore Remove providers/utils.h 2016-11-15 14:19:17 +02:00
.pylintrc Update repository structure 2016-11-02 22:58:30 +02:00
.travis.yml Update travis config to publish to real pypi 2020-07-01 23:18:41 -04:00
CONTRIBUTORS.rst Add RobinsonMa to the list of contributors 2020-06-16 22:25:41 -04:00
di-map.svg Rename Blank Diagram (1).svg to di-map.svg 2020-07-06 23:37:22 -04:00
di-map2.svg Rename Blank Diagram (2).svg to di-map2.svg 2020-07-06 23:59:31 -04:00
LICENSE.rst Update copyright date 2017-01-11 00:08:21 +02:00
Makefile Update makefile 2020-07-01 23:20:28 -04:00
MANIFEST.in Adds tests in MANIFEST.in (#204) 2018-09-02 20:54:06 +03:00
README.rst Update README.rst 2020-07-07 15:23:21 -04:00
requirements-dev.txt Wheels (#260) 2020-07-01 23:16:38 -04:00
requirements-doc.txt Try to fix padding problem in code samples in docs 2018-02-22 15:29:52 +02:00
requirements.txt Add support of six 1.15.0 2020-06-14 17:43:06 -04:00
setup.cfg Add flake8 config 2020-06-25 18:01:15 -04:00
setup.py Fix setup.py 2020-06-24 21:01:33 -04:00
tox.ini Skip yaml testing for on Python 3.4 2020-06-24 21:23:29 -04:00

.. figure:: https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/logo.svg
   :target: https://github.com/ets-labs/python-dependency-injector

| 

.. image:: https://img.shields.io/pypi/v/dependency_injector.svg
   :target: https://pypi.org/project/dependency-injector/
   :alt: Latest Version
   
.. image:: https://img.shields.io/pypi/l/dependency_injector.svg
   :target: https://pypi.org/project/dependency-injector/
   :alt: License
   
.. image:: https://pepy.tech/badge/dependency-injector
   :target: https://pepy.tech/project/dependency-injector
   :alt: Downloads
   
.. image:: https://img.shields.io/pypi/pyversions/dependency_injector.svg
   :target: https://pypi.org/project/dependency-injector/
   :alt: Supported Python versions
   
.. image:: https://img.shields.io/pypi/implementation/dependency_injector.svg
   :target: https://pypi.org/project/dependency-injector/
   :alt: Supported Python implementations
   
.. 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:: http://readthedocs.org/projects/python-dependency-injector/badge/?version=latest
   :target: http://python-dependency-injector.ets-labs.org/
   :alt: Docs Status
   
.. 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
   :alt: Coverage Status

What is ``Dependency Injector``?
================================

``Dependency Injector`` is a dependency injection framework for Python.

Why do I need it?
=================

``Dependency Injector`` helps you improve application structure.

With the ``Dependency Injector`` you keep **application structure in one place**.
This place is called **the container**. You use the container to manage all the components of the application. All the component dependencies are defined explicitly. This provides the control on the application structure. It is **easy to understand and change** it.

.. figure:: ./di-map2.svg

*The container is like a map of your application. You always know what depends on what.*

Example:

.. code-block:: python

    import sqlite3

    import boto3
    from dependency_injector import containers, providers
    
    from .example import services


    class Application(containers.DeclarativeContainer):
        """Application container."""

        config = providers.Configuration()

        # Gateways

        database_client = providers.Singleton(sqlite3.connect, config.database.dsn)

        s3_client = providers.Singleton(
            boto3.client, 's3',
            aws_access_key_id=config.aws.access_key_id,
            aws_secret_access_key=config.aws.secret_access_key,
        )

        # Services

        users_service = providers.Factory(
            services.UsersService,
            db=database_client,
        )

        auth_service = providers.Factory(
            services.AuthService,
            token_ttl=config.auth.token_ttl,
            db=database_client,
        )

        photos_service = providers.Factory(
            services.PhotosService,
            db=database_client,
            s3=s3_client,
        )


Run the application:

.. code-block:: python

    from .application import Application
    
    
    def main():
       """Run application."""
       application = Application()
       application.config.from_yaml('config.yml')
       
       users_service = application.users_service()
       auth_service = application.auth_service()
       photos_service = application.photos_service()

       ...


    if __name__ == '__main__':
        main()

You can find more ``Dependency Injector`` examples in the ``/examples`` directory
on the GitHub:

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


How to install?
---------------

- The package is available on the `PyPi`_::

    pip install dependency-injector

Where is the docs?
------------------

- The documentation is available on the `Read The Docs <http://python-dependency-injector.ets-labs.org/>`_

Have a question?
----------------

- Open a `Github Issue <https://github.com/ets-labs/python-dependency-injector/issues>`_


Want to help?
-------------

- ⭐️ Star the ``Dependency Injector`` on the `Github <https://github.com/ets-labs/python-dependency-injector/>`_
- 🆕 Start a new project with the ``Dependency Injector``
- 💬 Tell your friend about the ``Dependency Injector``

.. _PyPi: https://pypi.org/project/dependency-injector/