Simple Dependency Injector for python
Project description
A simple dependency injection framework for python.
Simple Example
from diana import injector
def my_factory():
return "FactoryValue"
FactoryValue = object()
injector.provide(FactoryValue, factory=my_factory)
OtherValue = object()
injector.provide(OtherValue, value="OtherValue")
# Hard injection, provider must exist
@injector(fish=FactoryValue, cat=OtherValue)
def foo(fish=None, cat=None):
return (fish, cat)
# Soft injection, missing dependencies will be filled with `None`
@injector.soft(horse=MissingValue)
def bar(horse):
return horse
foo() # Returns `('FactoryValue', 'OtherValue')`
bar() # Returns `None`
You can also decorate factories:
from diana import injector
FactoryValue = object()
@injector.factory(FactoryValue)
def my_factory():
return "FactoryValue"
Aliases
You might not want to have to handle importing of ‘loose’ objects. Diana supports aliases for provided dependencies.
from diana import injector
FactoryValue = object()
@injector.factory(FactoryValue, aliases=('FactoryValue', 'trout'))
def my_factory():
return "FactoryValue"
@injector(fish='trout')
def foo(fish):
return fish
foo() # Returns "FactoryValue"
Contextual Overrides
In some situations, you may not want to use the default value for a given dependency (e.g. testing). You can override the default temporarily like so:
from diana import injector
FactoryValue = object()
@injector.factory(FactoryValue)
def my_factory():
return "FactoryValue"
@injector(fish='trout')
def foo(fish):
return fish
with injector.override(FactoryValue, factory=lambda: "Other"):
foo() # Returns "Other"
foo() # Returns "FactoryValue"
Scopes
The lifecycle of provided dependencies can be managed with scopes. A few scopes are shipped with Diana by default.
from diana import injector, Const
FactoryValue = object()
@injector.factory(FactoryValue, scope=Const)
def my_factory():
time.sleep()
return "FactoryValue"
@injector(fish=FactoryValue)
def foo(fish):
return fish
foo()
foo() # `my_factory` is not called a second time.
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
diana-0.0.5-py2-none-any.whl
(5.9 kB
view details)
File details
Details for the file diana-0.0.5-py2-none-any.whl
.
File metadata
- Download URL: diana-0.0.5-py2-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95c604ff9f771aa3d8cc15901b9c7a3f22948d423640990ac272a2fe7790b001 |
|
MD5 | 8c02af9bd6f44cf487bd7b0bc48a633d |
|
BLAKE2b-256 | 86fb289e2c0a840619ec684be127980c2130366639c0716e744f3565743ecb70 |