A dependency injection library for Python - inspired by ASP.NET Core.
Project description
py-dependency-injection
A dependency injection library for Python.
Why py-dependency-injection?
py-dependency-injection is inspired by the built-in dependency injection system in ASP.NET Core. It provides a lightweight and extensible way to manage dependencies in Python applications. By promoting constructor injection and supporting scoped lifetimes, it encourages clean architecture and makes testable, maintainable code the default.
This library is implemented in pure Python and has no runtime dependencies.
Features
- Scoped Registrations: Define the lifetime of your dependencies as transient, scoped, or singleton.
- Constructor Injection: Automatically resolve and inject dependencies when creating instances.
- Method Injection: Inject dependencies into methods using a simple decorator.
- Factory Functions: Register factory functions, classes, or lambdas to create dependencies.
- Instance Registration: Register existing instances as dependencies.
- Tag-Based Registration and Resolution: Organize and resolve dependencies based on tags.
- Multiple Containers: Support for using multiple dependency containers.
Compatibility
This library requires Python 3.9 or later.
It is tested and compatible with:
- Python 3.9, 3.10, 3.11, 3.12, 3.13
Installation
$ pip install py-dependency-injection
Quick Start
Here's a quick example to get you started:
from dependency_injection.container import DependencyContainer
# Define an abstract payment gateway interface
class PaymentGateway:
def charge(self, amount: int, currency: str):
raise NotImplementedError()
# A concrete implementation using Stripe
class StripeGateway(PaymentGateway):
def charge(self, amount: int, currency: str):
print(f"Charging {amount} {currency} using Stripe...")
# A service that depends on the payment gateway
class CheckoutService:
def __init__(self, gateway: PaymentGateway):
self._gateway = gateway
def checkout(self):
self._gateway.charge(2000, "USD") # e.g. $20.00
# Get the default dependency container
container = DependencyContainer.get_instance()
# Register StripeGateway as a singleton (shared for the app's lifetime)
container.register_singleton(PaymentGateway, StripeGateway)
# Register CheckoutService as transient (new instance per resolve)
container.register_transient(CheckoutService)
# Resolve and use the service
checkout = container.resolve(CheckoutService)
checkout.checkout()
Documentation
For more advanced usage and examples, please visit our readthedocs page.
License
py-dependency-injection is released under the MIT license — a permissive license that allows commercial use, modification, distribution, and private use.
See LICENSE for full details.
Source Code
You can find the source code for py-dependency-injection on GitHub.
Release Notes
Latest: 1.0.0-rc.2 (2025-08-07)
- License Change: Switched from GPL-3.0 to MIT to support broader adoption and commercial use.
- Toolchange: Migrated from
pipenvtoPoetry. - Dropped Python 3.7 & 3.8 support – Both versions are EOL and increasingly unsupported by modern tooling.
➡️ Full changelog: GitHub Releases
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file py_dependency_injection-1.0.0rc2.tar.gz.
File metadata
- Download URL: py_dependency_injection-1.0.0rc2.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.11.6 Darwin/22.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27454e797f708b7a40a183effc452950fdd11acac43981959c202f5dca6e1da6
|
|
| MD5 |
4fedbe1e1f42551eb9499142cc28ce5c
|
|
| BLAKE2b-256 |
8f3c1311377e82d2a21735dde40b00dfaaf0f999bdb641d171dca7bc68a8855c
|
File details
Details for the file py_dependency_injection-1.0.0rc2-py3-none-any.whl.
File metadata
- Download URL: py_dependency_injection-1.0.0rc2-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.11.6 Darwin/22.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb8b81b4e79e873c8cf4d36774be2d72c832ce808fbf17550137abf726e52971
|
|
| MD5 |
b2072590981816c9a885a53f7a93a228
|
|
| BLAKE2b-256 |
3bbac4f1be1e284a0fcc4f47381ad16d085e396d5b95d8c48abb2448d264474a
|