Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
A dependency injection library for python, aimed for the least amount of magic.
Heavily influenced by FastAPI's dependency injection classes and logic.
Simple Example
from dataclasses import dataclass
from deadsimple import Depends, resolve
@dataclass
class DepA():
dep_b: DepB
@dataclass
class DepB():
value: str
def get_dep_b() -> DepB:
return DepB(value="some val")
def get_dep_a(dep_b: DepB = Depends(get_dep_b)) -> DepA:
return DepA(dep_b=dep_b)
my_a = resolve(get_dep_a)
assert my_a.dep_b.value == "some val"
Dependencies will instantiate once per factory for each call to resolve
.
@dataclass
class DepC():
dep_a: DepA
dep_b: DepB
def get_dep_c(
dep_a: DepA = Depends(get_dep_a),
dep_b: DepB = Depends(get_dep_b),
) -> DepC:
return DepC(dep_a=dep_a, dep_b=dep_b)
my_c = resolve(get_dep_c)
assert my_c.dep_b is my_c.dep_a.dep_b
For Singleton use lru_cache or cache from functools
from functools import lru_cache
# or from functools import cache if you're 3.9+
@dataclass
class Singleton():
pass
@dataclass
class NotSingleton():
singleton_dep: Singleton
@lru_cache
def get_singleton() -> Singleton:
return Singleton()
def get_not_singleton(singleton: Singleton = Depends(get_singleton)) -> NotSingleton:
return NotSingleton(singleton_dep=singleton)
not_singleton_a = resolve(get_not_singleton)
not_singleton_b = resolve(get_not_singleton)
assert not_singleton_a is not not_singleton_b
assert not_singleton_a.singleton_dep is not_singleton_b.singleton_dep
Override dependencies:
override_dep_b = DepB(value="some other val")
my_a = resolve(get_dep_a, overrides={get_dep_b: override_dep_b})
assert my_a.dep_b.value == "some other val"
Generator factory methods:
def get_dep_b() -> DepB:
print("enter b")
yield DepB(value="some val")
print("exit b")
def get_dep_a(dep_b: DepB = Depends(get_dep_b)) -> DepA:
print("enter a")
yield DepA(dep_b=dep_b)
print("exit a")
resolve(get_dep_a)
# prints:
# enter b
# enter a
# exit a
# exit b
Lazy / optional resolution:
from deadsimple import Lazy
def get_dep_b() -> DepB:
print("enter b")
return DepB(value="some val")
def get_dep_a(dep_b = Lazy(get_dep_b)) -> DepA:
print("enter a")
return DepA(dep_b=dep_b.lazy)
resolve(get_dep_a)
# prints:
# enter a
# enter b
Controlled dependency lifetime scope:
from deadsimple import resolve_open
def get_dep_b() -> DepB:
print("enter b")
yield DepB(value="some val")
print("exit b")
with resolve_open(get_dep_b) as dep_b:
print("inside")
# prints:
# enter b
# inside
# exit b
pip install deadsimple
FAQs
A dependency injection library, aimed for the least amount of magic
We found that deadsimple demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.