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, container
from simple_di.providers import Static, Factory, Configuration
@container
class OptionsClass(container):
cpu: Provider[int] = Static(2)
worker: Provider[int] = Factory(lambda c: 2 * int(c) + 1, c=cpu)
Options = OptionsClass()
@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.
Arguments:
- squeeze_none: default False. Treat None value passed in as not passed.
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.1.0.tar.gz
(4.8 kB
view hashes)
Built Distribution
Close
Hashes for simple_di-0.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dea4ec1195ce30412012b87eb455ac85a38f2a25a3d442219803e41c748703a0 |
|
MD5 | e6e119d002ced1b4f359bb43c2d00fc5 |
|
BLAKE2b-256 | ef8e3cb416d4d9e11ae1b322de13d68e3a0c1e443a3660db601a9dbe255b0e95 |