Skip to main content

Implementation of dependency injection for Python 3

Project description

Implementation of dependency injection for Python 3

Features:

  • types resolution by signature types annotations (type hints)
  • types resolution by constructor parameter names and aliases (convention over configuration)
  • unintrusive: builds objects graph without the need to change classes source code (unlike some other Python implementations of dependency injection, like inject)
  • minimum overhead to obtain services, once the objects graph is built
  • support for singletons, transient and scoped services

This library is freely inspired by .NET Standard Microsoft.Extensions.DependencyInjection implementation (ref. MSDN, Dependency injection in ASP.NET Core, Using dependency injection in a .Net Core console application).

The idea of writing this library was strengthened by this article by Bob Gregory: Dependency Injection with Type Signatures in Python. Even before reading Gregory's article, I shared many of the ideas he described in his blog.

Installation

pip install rodi

De gustibus non disputandum est

This library is designed to work both by type hints in constructor signatures, and by constructor parameter names (convention over configuration), like described in below diagram. It can be useful for those who like type hinting, those who don't, and those who like having both options.

Usage option

Minimum overhead

rodi works by inspecting __init__ methods once at runtime, to generate functions that return instances of desired types. Validation steps, for example to detect circular dependencies or missing services, are done when building these functions, so additional validation is not needed when activating services.

For this reason, services are first registered inside an instance of ServiceCollection class, which implements a method build_provider() that returns an instance of ServiceProvider. The service provider is then used to obtain desired services by type or name. Inspection and validation steps are done only when creating an instance of service provider.

Classes

In the example below, a singleton is registered by exact instance.

services = ServiceCollection()
services.add_instance(Cat("Celine"))

provider = services.build_provider()  # --> validation, generation of functions

cat = provider.get(Cat)

assert cat is not None
assert cat.name == "Celine"

Service life style:

  • singleton - instantiated only once per service provider
  • transient - services are instantiated every time they are required
  • scoped - instantiated only once per service resolution (root call, e.g. once per web request)

Documentation

For documentation and examples, please refer to the wiki in GitHub, https://github.com/RobertoPrevato/rodi/wiki.


Develop and run tests locally

pip install -r dev_requirements.txt

# run tests using automatic discovery:
pytest

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

rodi-1.0.0.tar.gz (7.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rodi-1.0.0-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file rodi-1.0.0.tar.gz.

File metadata

  • Download URL: rodi-1.0.0.tar.gz
  • Upload date:
  • Size: 7.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.6

File hashes

Hashes for rodi-1.0.0.tar.gz
Algorithm Hash digest
SHA256 4c85d06f85327df33fb93ebef87b3edef85c1f053f04aa132941c0f926a0ce80
MD5 3345597ff896db6c860b4d3a168e6686
BLAKE2b-256 bd8ffdc47b3501d86d2b28fe91711cc5024e8427b182becc01d35937d77e6a22

See more details on using hashes here.

File details

Details for the file rodi-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: rodi-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.6

File hashes

Hashes for rodi-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3dc6125cfb0d5628f8b328131045155e055da8114d6fc6a0494c9b7b2ebb59e3
MD5 7492a44aef793e5aedf956e499177c5e
BLAKE2b-256 568c2caa108f0f93b41e19d032f795af076cbaabde7827ddd925b33795a72cb6

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