simple dependency injection library
Project description
simple-di
A simple, strictly typed dependency injection library.
Install
pip install simple_di
Usage
Examples:
from simple_di import inject, Provide, Provider
from simple_di.providers import Static, Callable, Configuration
class Options(Container):
cpu: Provider[int] = Static(2)
worker: Provider[int] = Callable(lambda c: 2 * c + 1, c=cpu)
@inject
def func(worker: int = Provide[Options.worker]):
return worker
assert func() == 5
assert func(1) == 1
Options.worker.set(2)
assert func() == 2
Options.worker.reset()
assert func() == 5
Options.cpu.set(1)
assert func() == 3
API
Type annotation supported
inject
Inject values into providers in function/method arguments.
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
simple_di-0.0.4.tar.gz
(3.9 kB
view hashes)
Built Distribution
Close
Hashes for simple_di-0.0.4-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3bb940a550957a55e077cea40c429808edb7a0938214bc96bd78c8151032467 |
|
MD5 | 8d0087815814f21d8865683dfaee313b |
|
BLAKE2b-256 | 8f9fd9c84edd708cf619599655cf625f12ffd07c0492441c753f5356705c71de |