Skip to main content

Type based python dependency injection framework.

Project description

imbue

tests version python

Type based python dependency injection framework.

Why another dependency injection library?

There are many out there, including some that comes directly with (web) frameworks. I wanted one that was explicitly contextualized in the different layers of the application and that did not leak in the domain layer. In many cases, dependencies are simply parameters that are passed to constructors, and ideally, the domain layer should not know anything how they are injected.

Main objects

  • Container: a singleton containing all dependencies and the links between them
  • Dependency can be either:
    • an interface (class or function)
    • or a structured dependency linking an implementation to an interface
  • Context: contexts in which dependencies will live:
    • APPLICATION: equivalent to singletons across the app lifetime -- must be thread and async safe
    • THREAD: singleton per thread -- must be async safe
    • TASK: one instance will be provided for the entire task -- could be async safe
    • FACTORY: one instance will be provided every time it is requested
  • ContextualizedDependency: enriched dependency with context related attributes
  • ContextualizedContainer: one per context, handles their dependencies lifecycle
  • Provider: wraps injection for different interfaces (classes, functions, methods)
  • Package: provides for more dependency declaration and add grouped dependencies to the container

Usage

Summary

The container should be initialized somewhere near the entrypoint of the application.

from imbue import Container, Context, ContextualizedDependency

from myapp import APkg, ADep, BDep

container = Container(
    APkg(...),  # Packages would typically be passed config.
    ContextualizedDependency(ADep, Context.THREAD, eager=True),
)

...

# The application context should be entered through the framework initialization.
async with container.application_context() as app_container:
    a_dep = await app_container.get(ADep)
    ...
    # The task context should be entered in each request.
    async with app_container.task_context() as task_container:
        b_dep = await task_container.get(BDep)

💡 A dependency can require other dependencies, the container will resolve the graph and raise errors if circular dependencies are found.

In the details

The packages provide the dependencies for the container, there are two ways of doing that.

Complex dependencies

This might be because dependencies depend on config and other reasons. You can use the Package class:

from typing import AsyncIterator

from imbue import Package, application_context

from myapp import LoggingConfig, MyLoggerTransport, LoggerTransport, MyLogger, Logger

class LoggingPackage(Package):
    def __init__(self, config: LoggingConfig):
        self._config = config
        
    @application_context(eager=True)  # You can autoload dependencies.
    # The method should expose the interface as the type and return the implementation.
    def logger_transport(self) -> LoggerTransport:
        return MyLoggerTransport(self._config.transport)

    @application_context
    # Sub dependencies should be required through their interface.
    async def logger(self, transport: LoggerTransport) -> AsyncIterator[Logger]:
        # Package methods also allow you to handle context managers.
        async with MyLogger(transport, self._config.logger) as logger:
            # Using generators allow cleaning up resources when the context closes.
            yield logger
Declaring dependencies

It's done via methods that can be:

  • functions
  • async functions
  • generators
  • async generators

To declare the method returns a dependency, you simply choose the appropriate context and add the context decorator on the method.

💡 Eager dependencies are instantiated as soon as we enter their context. This is useful if we want to make sure a dependency will use the main thread's event loop.

Cleaning resources

When you need to close resources you can do so via a generator. The generator should yield the dependency.

💡 You should watch out for errors, if the context is closed handling an error, it will be raised in the generator.

Simple dependencies

You can directly pass them to the container:

Container(
    # Directly expose the implementation.
    ARepo,
    # Or interfaced implementations.
    Interfaced(BRepoInterface, BRepoImplementation),
    # You can also this to control context and eagerness.
    ContextualizedDependency(CDep, Context.THREAD, eager=True),
    ...,
)

or if you want to include them in a Package, add them in EXTRA_DEPENDENCIES.

💡 Whatever the method of adding dependencies, non-contextualized ones will have the context automatically set based on sub-dependencies. The lowest possible context will be used.

Integrations

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

imbue-2.1.2.tar.gz (14.8 kB view details)

Uploaded Source

Built Distribution

imbue-2.1.2-py3-none-any.whl (20.1 kB view details)

Uploaded Python 3

File details

Details for the file imbue-2.1.2.tar.gz.

File metadata

  • Download URL: imbue-2.1.2.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure

File hashes

Hashes for imbue-2.1.2.tar.gz
Algorithm Hash digest
SHA256 3cca3cf1136400d7ef1cae7e42fad27b1b0cb6820a2f637f16f54c09bafaf1a1
MD5 d4d5b3565ed7b03cfef819a734cdc2a9
BLAKE2b-256 8d2348432bb7fc49e441968de5e338c027c8f4b5e97a5021bba3c7f4446e083d

See more details on using hashes here.

File details

Details for the file imbue-2.1.2-py3-none-any.whl.

File metadata

  • Download URL: imbue-2.1.2-py3-none-any.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure

File hashes

Hashes for imbue-2.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e784b98a05c41c5a1f9aca15897d315437a56face93accf5003a90fe63d32421
MD5 173beddde63f60ec8ab41310bad44efe
BLAKE2b-256 f57c829a543d8a49eb911a76d2d7dde56b0a9d74916ef2d0b96a1d306019f3e4

See more details on using hashes here.

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