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.3.tar.gz
(9.2 kB
view hashes)
Built Distribution
Close
Hashes for simple_di-0.1.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8f49402527956f7d8c83e2a9d169e6223872bba0ddfee5169942529b9013008 |
|
MD5 | b847d713d710eb7c419564ca651c5d48 |
|
BLAKE2b-256 | f5050480c41c0cbf460397e5f99ff5845c84a5d0be0d863da7cea356d1129602 |