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.2.tar.gz (9.4 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.2-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for rodi-1.0.2.tar.gz
Algorithm Hash digest
SHA256 45a58376e5d9cf63b0ff160c45c737640b0dbeb12e97beb249fe008de1577613
MD5 b72c4fdce73ea92304f0d307f53b0143
BLAKE2b-256 cff72e7a5dce812f6aa8d81e6b393cdbdd0b58542bc3df8c5766fa523f883f5c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rodi-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 297bde5f00fb4fb65a51ec110dfc8d2d2392beb6d01496788e5b5d49d663b10e
MD5 6e7e747a0aa400c9fdcb920aced39ab0
BLAKE2b-256 fee8154553641429be0ddc7b8b3c47581f5eafa1943598b27127cc70f0dde931

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