Skip to main content

Dependency injection.

Project description

https://img.shields.io/pypi/v/antidote.svg https://img.shields.io/pypi/l/antidote.svg https://img.shields.io/pypi/pyversions/antidote.svg https://travis-ci.org/Finistere/antidote.svg?branch=master https://codecov.io/gh/Finistere/antidote/branch/master/graph/badge.svg https://readthedocs.org/projects/antidote/badge/?version=latest

Antidotes is a dependency injection micro-framework for Python 3.6+. It is designed on two core ideas:

  • Keep dependency declaration close to the actual code. Dependency injection is about removing the responsibility of building dependencies from their clients. It does not imply that dependency management should be done in a separate file.

  • Help you create navigable and maintainable code by: working with Mypy, preventing ambiguous dependency declaration (duplicates/overrides/conflicts typically), make it easy to track back where and how a dependency is declared, be as type-safe as possible.

It provides the following features:

  • Ease of use
    • injection anywhere you need through a decorator @inject, be it static methods, functions, etc.. By default, it will only rely on type hints (classes), but it supports a lot more!

    • no **kwargs arguments hiding actual arguments and fully mypy typed, helping you and your IDE.

    • documented, see https://antidote.readthedocs.io/en/stable. If you don’t find what you need, open an issue ;)

    • thread-safe, cycle detection.

  • Flexibility
    • Most common dependencies out of the box: services, configuration, factories, interface/implementation.

    • All of those are implemented on top of the core implementation. If Antidote doesn’t provide what you need, there’s a good chance you can implement it yourself quickly.

    • scope support

    • async injection

  • Maintainability
    • The different kinds of dependencies are designed to be easy to track back. Finding where and how a dependency is defined is easy.

    • Overriding dependencies (duplicates) and injecting twice will raise an exception.

    • Dependencies can be frozen, which blocks any new definitions.

    • You can specify type hints for dependencies that dynamically retrieved (world.get, world.lazy, const)

  • Testability
    • @inject lets you override any injections by passing explicitly the arguments.

    • Change dependencies locally within a context manager.

    • When encountering issues you can retrieve the full dependency tree, nicely formatted with world.debug.

    • Override locally in a test any dependencies.

  • Performance
    • Antidote has two implementations: the pure Python one which is the reference and the compiled one (cython) which is heavily tuned for fast injection. The compiled version is the fastest dependency injection library. See injection benchmark

Installation

To install Antidote, simply run this command:

pip install antidote

Documentation

Documentation can be found at https://antidote.readthedocs.io/en/stable.

Hands-on quick start

Short and concise example of some of the most important features of Antidote. The docuemYou can find a very beginner friendly tutorial

How does injection looks like ? Here is a simple example:

from antidote import inject, Service, Constants, const, world, Provide, Get
from typing import Annotated
# from typing_extensions import Annotated # Python < 3.9

class Conf(Constants):
    DB_HOST = const[str]('localhost:6789')
    DB_HOST_WITHOUT_TYPE_HINT = const('localhost:6789')

class Database(Service):  # Defined as a Service, so injectable.
    def __init__(self, host: Annotated[str, Get(Conf.DB_HOST)]):
        self._host = host  # <=> Conf().get('host')

@inject  # Nothing is injected implicitly.
def f(db: Provide[Database] = None):
    # Defaulting to None allows for MyPy compatibility but isn't required to work.
    assert db is not None
    pass

f()  # works !
f(Database('localhost:6789'))  # but you can still use the function normally

# You can also retrieve dependencies by hand
world.get(Conf.DB_HOST)
world.get[str](Conf.DB_HOST)  # with type hint
# if the dependency is the type itself, you may omit it:
world.get[Database]()

Or without annotated type hints (PEP-593):

class Database(Service):
    @inject({'host': Conf.DB_HOST})
    def __init__(self, host: str):
        self._host = host

@inject([Database])
def f(db: Database = None):
    assert db is not None
    pass

# Or with auto_provide=True, all class type hints will be treated as dependencies.
# you can also explicitly say which classes with `auto_provide=[Database]`.
@inject(auto_provide=True)
def f(db: Database = None):
    assert db is not None
    pass

Want more ? Here is an over-engineered example to showcase a lot more features:

"""
Simple example where a MovieDB interface is defined which can be used
to retrieve the best movies. In our case the implementation uses IMDB
to dot it.
"""
from antidote import (Constants, factory, inject, world, const, Service,
                      implementation, Get, From)
from typing import Annotated
# from typing_extensions import Annotated # Python < 3.9

 class MovieDB:
    """ Interface """

class ImdbAPI:
    """ Class from an external library. """

    def __init__(self, *args, **kwargs):
        pass

class Conf(Constants):
    IMDB_HOST = const[str]('imdb.host')
    # Constants will by default automatically enforce the cast to int,
    # float and str. Can be removed or extended to support Enums.
    IMDB_PORT = const[int]('imdb.port')
    # But specifying a type is not required at all, it's mostly to help Mypy.
    IMDB_API_KEY = const('imdb.api_key')

    def __init__(self):
        """
        Load configuration from somewhere. You can change how you configure your
        application later, it won't impact the whole application.
        """
        self._raw_conf = {
            'imdb': {
                'host': 'dummy_host',
                'api_key': 'dummy_api_key',
                'port': '80'
            }
        }

    def get_const(self, name: str, arg: str):
        from functools import reduce
        # self.get('a.b') <=> self._raw_conf['a']['b']
        return reduce(dict.get, arg.split('.'), self._raw_conf)  # type: ignore

# Provides ImdbAPI, as defined by the return type annotation.
@factory
def imdb_factory(host: Annotated[str, Get(Conf.IMDB_HOST)],
                 port: Annotated[int, Get(Conf.IMDB_PORT)],
                 api_key: Annotated[str, Get(Conf.IMDB_API_KEY)]
                 ) -> ImdbAPI:
    # Here host = Conf().get('imdb.host')
    return ImdbAPI(host=host, port=port, api_key=api_key)

@implementation(MovieDB)
def current_movie_db():
    return IMDBMovieDB  # dependency to be provided for MovieDB

class IMDBMovieDB(MovieDB, Service):
    # New instance each time
    __antidote__ = Service.Conf(singleton=False)

    def __init__(self, imdb_api: Annotated[ImdbAPI, From(imdb_factory)]):
        self._imdb_api = imdb_api

@inject
def f(movie_db: Annotated[MovieDB, From(current_movie_db)] = None):
    assert movie_db is not None  # for Mypy
    pass

f()

Or without annotated type hints:

@factory
@inject([Conf.IMDB_HOST, Conf.IMDB_PORT, Conf.IMDB_API_KEY])
def imdb_factory(host: str, port: int, api_key: str) -> ImdbAPI:
    return ImdbAPI(host=host, port=port, api_key=api_key)

class IMDBMovieDB(MovieDB, Service):
    __antidote__ = Service.Conf(singleton=False)

    @inject({'imdb_api': ImdbAPI @ imdb_factory})
    def __init__(self, imdb_api: ImdbAPI):
        self._imdb_api = imdb_api

@inject([MovieDB @ current_movie_db])
def f(movie_db: MovieDB = None):
    assert movie_db is not None
    pass

We’ve seen that you can override any parameter:

conf = Conf()
f(IMDBMovieDB(imdb_factory(
    # The class attributes will retrieve the actual value when called on a instance.
    # Hence this is equivalent to conf.get('imdb.host'), making your tests easier.
    host=conf.IMDB_HOST,
    port=conf.IMDB_PORT,
    api_key=conf.IMDB_API_KEY,  # <=> conf.get('imdb.api_key')
)))

But if you only to change one part in a complex dependency graph, you can override them locally with:

# When testing you can also override locally some dependencies:
with world.test.clone(keep_singletons=True):
    world.test.override.singleton(Conf.IMDB_HOST, 'other host')
    f()

If you ever need to debug your dependency injections, Antidote also provides a tool to have a quick summary of what is actually going on:

world.debug(f)
# will output:
"""
f
└── Permanent implementation: MovieDB @ current_movie_db
    └──<∅> IMDBMovieDB
        └── ImdbAPI @ imdb_factory
            └── imdb_factory
                ├── Const: Conf.IMDB_API_KEY
                │   └── Conf
                │       └── Singleton: 'conf_path' -> '/etc/app.conf'
                ├── Const: Conf.IMDB_PORT
                │   └── Conf
                │       └── Singleton: 'conf_path' -> '/etc/app.conf'
                └── Const: Conf.IMDB_HOST
                    └── Conf
                        └── Singleton: 'conf_path' -> '/etc/app.conf'

Singletons have no scope markers.
<∅> = no scope (new instance each time)
<name> = custom scope
"""

Hooked ? Check out the documentation ! There are still features not presented here !

Comparison

Disclaimer: This comparison is mostly based on the documentation of the most popular libraries I know of and is obviously somewhat biased. :)

In short, how does Antidote compare to other libraries ?

  • Everything is explicit: Some libraries using an @inject-like decorator, such as injector, lagom or python_inject will try to instantiate a class when used as a type hint if the argument is missing. Antidote will only inject dependencies that you have defined as such. Also by default Antidote will not inject anything unless explicitly told so, even for class type hints. This makes it a lot easier to understand what will be injected or not when looking at unknown code.

  • Rich ecosystem: With the exception of dependency_injector, I don’t know of any library providing as much flexibility regarding dependency management. Most of them will only inject class, support simple factories and singletons. With Antidote you can also express configuration, interfaces, lazy methods or functions.

  • Maintainability: Again with the exception of dependency_injector, dependency injection libraries may hide things from you. Typically when defining a factory for class, it’ll be defined somewhere and you won’t have any way of knowing easily where to find the factory without knowing the application. Dependencies defined out of the box with Antidote ensure that you can always track back a dependency to its definition with nothing more than a “go to definition” from your IDE.

  • Performance: Antidote’s @inject is heavily tuned for performance in the compiled version (Cython). Not other library goes as far. Now whether it’s really necessary for a dependency injection library is debatable. But this allows you to use @inject virtually anywhere easily.

The main difference with dependency_injector is the philosophy of the library. With dependency_injector declaration of dependencies (to the container) and their implementation are in two separate files:

# my_service.py
# Dependency Injector
class MyService:
    pass
# services.py
# Dependency Injector
from dependency_injector import containers, providers

class Container(containers.DeclarativeContainer):
    my_service = providers.Singleton(MyService)

This implies that you have one more file to maintain. And with a lot of dependency management you start managing either one big container or multiple ones.

However this one big advantage compared to most other dependency injection libraries: it’s easy to understand how dependencies are wired together, making it a lot more maintainable than most libraries. It is especially when declaring factories. With dependency_injector you would do something like that:

# services.py
# Dependency Injector
class Container(containers.DeclarativeContainer):
    my_service = providers.Factory(my_factory)

While most other libraries you have no easy way to know how MyService is created by the dependency injection framework:

# services.py
# Injector
@provider
def my_factory() -> MyService:
    pass

@inject
def f(s: MyService):
    pass

# Lagom
container[MyService] = my_factory

@magic_bind_to_container(container)
def f(s: MyService):
    pass

# Python Inject
def config(binder):
    binder.bind(MyService, my_factory)

inject.configure(config)

@inject.autoparams()
def f(s: MyService):
    pass

But with Antidote you always can track back to the definition of a dependency:

from antidote import factory, inject, From

@factory
def my_factory() -> MyService:
    pass

@inject(dict(my_service=MyService @ my_factory))
def f(my_service: MyService):
    pass

# Or with annotated type hints
@inject
def f(my_service: Annotated[MyService, From(my_factory)]):
    pass

So Antidote provides the same level of maintainability of dependency_injector, well even more IMHO, while being simpler to use and to integrate into you existing projects.

Cython

The cython implementation is roughly 10x faster than the Python one and strictly follows the same API than the pure Python implementation. This implies that you cannot depend on it in your own Cython code if any. It may be moved to another language.

If you encounter any inconsistencies, please open an issue ! You can avoid the Cython version from PyPI with the following:

pip install --no-binary antidote

Beware that PyPy is only tested with the pure Python version, not the Cython one.

Issues / Feature Requests / Questions

Feel free to open an issue on Github for questions, requests or issues ! ;)

How to Contribute

  1. Check for open issues or open a fresh issue to start a discussion around a feature or a bug.

  2. Fork the repo on GitHub. Run the tests to confirm they all pass on your machine. If you cannot find why it fails, open an issue.

  3. Start making your changes to the master branch.

  4. Writes tests which shows that your code is working as intended. (This also means 100% coverage.)

  5. Send a pull request.

Be sure to merge the latest from “upstream” before making a pull request!

If you have any issue during development or just want some feedback, don’t hesitate to open a pull request and ask for help !

Pull requests will not be accepted if:

  • classes and non trivial functions have not docstrings documenting their behavior.

  • tests do not cover all of code changes (100% coverage) in the pure python.

If you face issues with the Cython part of Antidote just send the pull request, I can adapt the Cython part myself.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

antidote-0.11.0.tar.gz (137.8 kB view hashes)

Uploaded Source

Built Distributions

antidote-0.11.0-cp39-cp39-manylinux2014_x86_64.whl (2.3 MB view hashes)

Uploaded CPython 3.9

antidote-0.11.0-cp39-cp39-manylinux2014_i686.whl (2.2 MB view hashes)

Uploaded CPython 3.9

antidote-0.11.0-cp39-cp39-manylinux2010_x86_64.whl (2.1 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

antidote-0.11.0-cp39-cp39-manylinux1_x86_64.whl (2.1 MB view hashes)

Uploaded CPython 3.9

antidote-0.11.0-cp39-cp39-manylinux1_i686.whl (2.2 MB view hashes)

Uploaded CPython 3.9

antidote-0.11.0-cp38-cp38-manylinux2014_x86_64.whl (2.4 MB view hashes)

Uploaded CPython 3.8

antidote-0.11.0-cp38-cp38-manylinux2014_i686.whl (2.3 MB view hashes)

Uploaded CPython 3.8

antidote-0.11.0-cp38-cp38-manylinux2010_x86_64.whl (2.3 MB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

antidote-0.11.0-cp38-cp38-manylinux1_x86_64.whl (2.3 MB view hashes)

Uploaded CPython 3.8

antidote-0.11.0-cp38-cp38-manylinux1_i686.whl (2.3 MB view hashes)

Uploaded CPython 3.8

antidote-0.11.0-cp37-cp37m-manylinux2014_x86_64.whl (2.1 MB view hashes)

Uploaded CPython 3.7m

antidote-0.11.0-cp37-cp37m-manylinux2014_i686.whl (2.0 MB view hashes)

Uploaded CPython 3.7m

antidote-0.11.0-cp37-cp37m-manylinux2010_x86_64.whl (1.9 MB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

antidote-0.11.0-cp37-cp37m-manylinux1_x86_64.whl (1.9 MB view hashes)

Uploaded CPython 3.7m

antidote-0.11.0-cp37-cp37m-manylinux1_i686.whl (2.0 MB view hashes)

Uploaded CPython 3.7m

antidote-0.11.0-cp36-cp36m-manylinux2014_x86_64.whl (2.1 MB view hashes)

Uploaded CPython 3.6m

antidote-0.11.0-cp36-cp36m-manylinux2014_i686.whl (2.0 MB view hashes)

Uploaded CPython 3.6m

antidote-0.11.0-cp36-cp36m-manylinux2010_x86_64.whl (1.9 MB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

antidote-0.11.0-cp36-cp36m-manylinux1_x86_64.whl (1.9 MB view hashes)

Uploaded CPython 3.6m

antidote-0.11.0-cp36-cp36m-manylinux1_i686.whl (2.0 MB view hashes)

Uploaded CPython 3.6m

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page