Skip to main content

A simple OOP Dependency injection container

Project description

Intro

Dependency Injection is the key pattern used to implement Inversion of Control and Dependency Inversion principles (check D in SOLID).

It makes it simple to standardize the way objects are initialized in the application.

This package provides you with the set of components to automate dependency injection through the application.

Installation

pip install oop-di

Usage

To make it work do the following steps:

# Init the `ContainerDefinition` component
container_definition = ContainerDefinition()
# fill the service definitions
container_definition.add_service(SomeService)
# compile the container
container = container_definition.compile()

# get an instance of the service from the container ...
service = container.get(SomeService)

# ... or inject it. Kwonly arguments will be injected
@container.inject()
def something(*, service: SomeService):
    ...

something()

# partial injection is also possible
def something_else(*, wont_inject: UnknownService, service: SomeService):
    ...

something_else(wont_inject=UnknownService())

Extensions

EnvExtension

You can add all environment variables to your container by adding EnvExtension to the container definition:

container_definition = ContainerDefinition()
container_definition.add_extension(EnvExtension())

Why not python-dependency-injector?

python-dependency-injector is the most popular Python DI library with a large community, excellent docs, and tons of features that are not available in oop-di. Probably, python-dependency-injector is the best choice for you. I've built this small library to handle the DI of my small experiments/pet projects.

What I don't like in python-dependency-injector and tried to mitigate in this library:

  • it requires a name for every service. oop-di can use class itself as the name of the service;
  • it makes you pollute your function's params with = Provide[Container.service] defaults to inject something. oop-di just auto-wires the services by checking the parameter's types;
  • oop-di has the tagging feature that can gather services into an array without an explicit definition of that array.

Check examples/ folder for more info:

  • 01-simple.py - shows the basics: how to define services and how to inject the services somewhere.
  • 02-extensions.py - how to split the definitions between modules.
  • 03-tags.py - how to use tags to group services.

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

oop-di-0.1.0.tar.gz (10.6 kB view details)

Uploaded Source

File details

Details for the file oop-di-0.1.0.tar.gz.

File metadata

  • Download URL: oop-di-0.1.0.tar.gz
  • Upload date:
  • Size: 10.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.9

File hashes

Hashes for oop-di-0.1.0.tar.gz
Algorithm Hash digest
SHA256 50288dec1d3fc32e67fa18c1f0cc8ec1e39de7a5f751bcc612d05dc9831e526a
MD5 1546f307275eaedbf0425127dc8905ad
BLAKE2b-256 c0d19277bf8e6e20941b412a7c7a7a8f09c5f8f3d445bc31f4016472ebfcc50c

See more details on using hashes here.

Supported by

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