A dependency injection library for Python, Optimized for serverless applications
Project description
Introduction
ididi is a pythonic dependency injection lib, with ergonomic apis, without boilplate code, works out of the box.
ididi is designed to be non-intrusive, it stays out of your existing code, and is easy to be added/removed.
ididi is 100% strictly typed and well-tested, you can expect excellent typing support.
Information
Source Code ididi-github
Docs ididi-docs
Install
pip install ididi
To view viusal dependency graph, install graphviz
pip install ididi[graphviz]
Usage
Quick Start
import ididi
class Config:
def __init__(self, env: str = "prod"):
self.env = env
class Database:
def __init__(self, config: Config):
self.config = config
class UserRepository:
def __init__(self, db: Database):
self.db = db
class UserService:
def __init__(self, repo: UserRepository):
self.repo = repo
assert isinstance(ididi.resolve(UserService), UserService)
Automatic dependencies injection
You can use generator/async generator to create a resource that needs to be closed. NOTE:
- resources, if set to be reused, will be shared across different dependents only within the same scope, and destroyed when the scope is exited.
- async resource in a sync dependent is not supported, but sync resource in a async dependent is supported.
from ididi import DependencyGraph
dg = DependencyGraph()
@dg.node
async def get_db(client: Client) -> ty.AsyncGenerator[DataBase, None]:
db = DataBase(client)
assert client.is_opened
try:
db.open()
yield db
finally:
await db.close()
@dg.entry
async def main(db: DataBase) -> str:
assert db.is_opened
return "ok"
assert await main() == "ok"
Using Scope to manage resources
- nested scope is supported.
- scope can resolve 'normal' dependents as well.
you might use combination of with
or async with
statement and dg.scope()
to manage resources.
resources will only be shared across dependents only withint the same scope, and will be automatically destryoed and closed when the scope is exited.
NOTE: classes that implment contextlib.AbstractContextManager
or contextlib.AbstractAsyncContextManager
are also considered to be resources and can be resolved within scope.
@dg.node
def get_resource() -> ty.Generator[Resource, None, None]:
res = Resource()
yield res
res.close()
with dg.scope() as scope:
resource = scope.resolve(Resource)
# For async generator
async with dg.scope() as scope:
resource = await scope.resolve(Resource)
you can use dg.use_scope to retrive nearest scope, this allows your to have access the scope without passing it around, e.g.
def main():
with dg.scope() as scope:
global_app = scope.resolve(App)
and somewhere deep in your callstack, you can do
def somewhere():
scope = dg.use_scope()
local_app = scope.resolve(App)
assert global_app is local_app
Usage with FastAPI
NOTE: resource is supported
from fastapi import FastAPI
from ididi import DependencyGraph
app = FastAPI()
dg = DependencyGraph()
class AuthService: ...
@dg.node
def auth_service_factory(db: DataBase) -> AuthService:
asycn with AuthService(db=db) as auth:
yield auth
Service = ty.Annotated[AuthService, Depends(dg.factory(auth_service_factory))]
@app.get("/")
def get_service(service: Service):
return service
Visualize the dependency graph(beta)
from ididi import DependencyGraph, Visualizer
dg = DependencyGraph()
vs = Visualizer(dg)
class ConfigService:
def __init__(self, env: str = "test"):
self.env = env
class DatabaseService:
def __init__(self, config: ConfigService):
self.config = config
class CacheService:
def __init__(self, config: ConfigService):
self.config = config
class BaseService:
def __init__(self, db: DatabaseService):
self.db = db
class AuthService(BaseService):
def __init__(self, db: DatabaseService, cache: CacheService):
super().__init__(db)
self.cache = cache
class UserService:
def __init__(self, auth: AuthService, db: DatabaseService):
self.auth = auth
self.db = db
class NotificationService:
def __init__(self, config: ConfigService):
self.config = config
class EmailService:
def __init__(self, notification: NotificationService, user: UserService):
self.notification = notification
self.user = user
dg.static_resolve(EmailService)
vs.view # use vs.view in jupyter notebook, or use vs.save(path, format) otherwise
Circular Dependency Detection
ididi would detect if circular dependency exists, if so, ididi would give you the circular path
For example:
class A:
def __init__(self, b: "B"):
self.b = b
class B:
def __init__(self, a: "C"):
self.a = a
class C:
def __init__(self, d: "D"):
pass
class D:
def __init__(self, a: A):
self.a = a
def test_advanced_cycle_detection():
"""
DependentNode.resolve_forward_dependency
"""
dag = DependencyGraph()
with pytest.raises(CircularDependencyDetectedError) as exc_info:
dag.resolve(A)
assert exc_info.value.cycle_path == [A, B, C, D, A]
This happens when a class is statically resolved
Lazy Dependency(Beta)
you can use @dg.node(lazy=True)
to define a dependent as lazy
,
which means each of its dependency will not be resolved untill accessed.
start with v0.3.0, lazy node is no longer transitive.
class UserRepo:
def __init__(self, db: Database):
self._db = db
def test(self):
return "test"
@dg.node(lazy=True)
class ServiceA:
def __init__(self, user_repo: UserRepo, session_repo: SessionRepo):
self._user_repo = user_repo
self._session_repo = session_repo
assert isinstance(self._user_repo, LazyDependent)
assert isinstance(self._session_repo, LazyDependent)
@property
def user_repo(self) -> UserRepo:
return self._user_repo
@property
def session_repo(self) -> SessionRepo:
return self._session_repo
assert isinstance(instance.user_repo, LazyDependent)
assert isinstance(instance.session_repo, LazyDependent)
# user_repo would be resolved when user_repo.test() is called.
assert instance.user_repo.test() == "test"
Runtime override
dg = DependencyGraph()
class Inner:
def __init__(self, value: str = "inner"):
self.value = value
@dg.node
class Outer:
def __init__(self, inner: Inner):
self.inner = inner
# Override nested dependency
instance = dg.resolve(Outer, inner=Inner(value="overridden"))
assert instance.inner.value == "overridden"
Advanced Usage
ABC
Register ABC implementation with dg.node
you should use dg.node
to let ididi know about the implementations of the ABC.
you are going to resolve.
from abc import ABC, abstractmethod
class Repository(ABC):
def __init__(self):
pass
@abstractmethod
def save(self) -> None:
"""Save the repository data."""
pass
@dag.node
class Repo1(Repository):
def save(self) -> None:
pass
@dag.node
class Repo2(Repository):
def save(self) -> None:
pass
dag.resolve(Repository)
You might also use __init_subclass__
hook to automatically register implementations.
Multiple Implementations of ABC
ididi will use the last implementation registered to resolve the ABC, you can use a factory to override this behavior.
class Repository(ABC):
def __init__(self):
pass
@abstractmethod
def save(self) -> None:
"""Save the repository data."""
pass
@dag.node
class Repo1(Repository):
def save(self) -> None:
pass
@dag.node
class Repo2(Repository):
def save(self) -> None:
pass
@dag.node
def repo_factory() -> Repository:
return Repo1()
assert Repository in dag.nodes
repo = dag.resolve(Repository)
assert isinstance(repo, Repo1)
Dependent that implements multiple protocols
class UserRepo(ty.Protocol): ...
class SessionRepo(ty.Protocol): ...
@dg.node
class BothRepo(UserRepo, SessionRepo):
def __init__(self, name: str = "test"):
self.name = name
class UserApp:
def __init__(self, repo: UserRepo):
self.repo = repo
class SessionApp:
def __init__(self, repo: SessionRepo):
self.repo = repo
user = scope.resolve(UserApp)
session = scope.resolve(SessionApp)
assert user.repo is session.repo
# same logic for resource with scope
Performance
ididi is very efficient and performant,
DependencyGraph.statical_resolve
(type analysis on each class, can be done at import time)
Time Complexity: O(n) - O(n**2)
O(n): more-real case, where each dependent has a constant number of dependencies, for example, each dependents has on average 3 dependencies.
O(n**2): worst case, where each dependent has as much as possible number of dependencies, for example, with 100 nodes, node 1 has 99 dependencies, node 2 has 98, etc.
DependencyGraph.resolve
(inject dependencies and build the dependent instance)
Time Complexity: O(n)
You might run the benchmark yourself with following steps
- clone the repo, cd to project root
- install pixi from pixi
- run
pixi install
- run
make benchmark
As a reference:
tests/test_benchmark.py 0.003801 seoncds to statically resolve 122 classes
Performance tip
-
use dg.node to decorate your classes
-
use dg.node to decorate factory of third party classes so that ididi does not need to analyze them
For Example
def redis_factory(settings: Settings) -> Redis:
# build redis here
return redis
- use dg.static_resolve_all when your app starts, which will statically resolve all your classes decorated with @dg.node.
Resolve Rules
- If a node has a factory, it will be used to create the instance.
- Otherwise, the node will be created using the
__init__
method.- Parent's
__init__
will be called if no__init__
is defined in the node.
- Parent's
- whenver there is a default value, it will be used to resolve the dependency.
- bulitin types are not resolvable by nature, it requires default value to be provided.
- runtime override with
dg.resolve
Error context
static resolve might fail when class contain unresolvable dependencies, when failed, ididi would show a chain of errors like this:
ididi.errors.MissingAnnotationError: Unable to resolve dependency for parameter: env in <class 'tests.features.test_improved_error.Config'>, annotation for `env` must be provided
<- Config(env: _Missed)
<- DataBase(config: Config)
<- AuthService(db: DataBase)
<- UserService(auth: AuthService)
Where UserService depends on AuthService, which depends on Database, then Config, but Config.env is missing annotation.
What and why
What is dependency injection?
If a class requires other classes as its attributes, then these attributes are regarded as dependencies of the class, and the class requiring them is called a dependent.
class Downloader:
def __init__(self, session: requests.Session):
self.session = session
Here, Downloader
is a dependent, with requests.Session
being its dependency.
Dependency injection means dynamically constructing the instances of these dependency classes and then pass them to the dependent class.
the same class without dependency injection looks like this:
class Downloader:
def __init__(self):
self.session = requests.Session(url=configured_url, timeout=configured_timeout)
Now, since requests.Session
is automatically built with Downloader
, it would be difficult to change the behavior of requests.Session
at runtime.
Why do we need it?
There are actually a few reasons why you might not need it, the most fundamental one being your code does not need reuseability and flexibility.
- If you are writing a script that only runs when you menually execute it, and it is often easier to rewrite the whole script than to modify it, then it probably more efficient to program everything hard-coded. This is actually a common use case of python, DEVOPS, DataAnalysts, etc.
For example, you can actually modify the dependencies of a class at runtime.
class Downloader:
...
downloader = Downloader()
downloader.session = requests.Session(url=configured_url, timeout=configured_timeout)
However, this creates a few problems:
- It is error-prone, you might forget to modify the dependencies, or you might modify the dependencies in the wrong order.
- It is not typesafe, you might pass the wrong type of dependencies to the class.
- It is hard to track when the dependencies are modified.
Dependency injection enables you to extend the dependencies of a class without modifying the class itself, which increases the flexibility and reusability of the class.
Do we need a DI framework?
It depends on how complicated your dependency graph is, for example, you might have something like this in your app, where you menually inject dependencies into dependent.
from .infra import *
def auth_service_factory(
settings: Settings,
) -> AuthService:
connect_args = (
settings.db.connect_args.model_dump()
)
execution_options = (
settings.db.execution_options.model_dump()
)
engine = engine_factory(
db_url=settings.db.DB_URL,
echo=settings.db.ENGINE_ECHO,
isolation_level=settings.db.ISOLATION_LEVEL,
pool_pre_ping=True,
connect_args=connect_args,
execution_options=execution_options,
)
async_engine = sqlalchemy.ext.asyncio.AsyncEngine(engine)
db = AsyncDatabase(async_engine)
cahce = RedisCache[str].build(
url=config.URL,
keyspace=config.keyspaces.APP,
socket_timeout=config.SOCKET_TIMEOUT,
decode_responses=config.DECODE_RESPONSES,
max_connections=config.MAX_CONNECTIONS,
)
token_registry = TokenRegistry(cahce=cache,
token_bucket=TokenBucket(cache, key=Settings.redis.bucket_key)
)
uow = UnitOfWork(db)
encryptor = Encryptor(
secret_key=settings.security.SECRET_KEY.get_secret_value(),
algorithm=settings.security.ALGORITHM,
)
eventstore = EventStore(uow)
auth_repo = AuthRepository(db)
auth_service = AuthService(
auth_repo=auth_repo,
token_registry=token_registry,
encryptor=encryptor,
eventstore=eventstore,
security_settings=settings.security,
)
return auth_service
but then you realize that some of these dependencies should be shared across your services, for example, auth repo might be needed by both AuthService and UserService, or even more
Terminology
dependent
: a class, or a function that requires arguments to be built/called.
dependency
: an object that is required by a dependent.
resource
: a dependent that implements the contextlib.AbstractAsync/ContextManager, or has an async/sync generator as its factory, is considered a resource.
static resolve
: resursively build node from dependent, but does not create the instance of the dependent type.
resolve
: recursively resolve the dependent and its dependencies, then create an instance of the dependent type.
solve
: an alias for resolve
entry
: a special type of node, where it has no dependents and its factory is itself.
FAQ
How do I override, or provide a default value for a dependency?
you can use dg.node
to create a factory to override the value.
you can also have dependencies in your factory, and they will be resolved recursively.
class Config:
def __init__(self, env: str = "prod"):
self.env = env
@dg.node
def config_factory() -> Config:
return Config(env="test")
how do i override a dependent in test?
you can use dg.node
with a factory method to override the dependent resolution.
class Cache: ...
class RedisCache(Cache):
...
class MemoryCache(Cache):
...
@dg.node
def cache_factory(...) -> Cache:
return RedisCache()
in your conftest.py:
@dg.node
def memory_cache_factory(...) -> Cache:
return MemoryCache()
as this follows LSP, it works both with ididi and type checker.
How do I make ididi reuse a dependencies across different dependent?
by default, ididi will reuse the dependencies across different dependent,
you can change this behavior by setting reuse=False
in dg.node
.
@dg.node(reuse=False) # True by default
class AuthService: ...
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
Built Distribution
File details
Details for the file ididi-1.0.1.tar.gz
.
File metadata
- Download URL: ididi-1.0.1.tar.gz
- Upload date:
- Size: 73.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afbeaf78c906ba5ef3341b2f75a88fe1342effc35921c510a9fffa3b83c42296 |
|
MD5 | 3c4482349af270d1c4310d8812adb70e |
|
BLAKE2b-256 | 27bfabcaaf8e9e65cd07e002ac70f26ea9ca37edd92ea62a4f41f1e9746212bd |
File details
Details for the file ididi-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: ididi-1.0.1-py3-none-any.whl
- Upload date:
- Size: 25.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 752ff583ff3e11f5fb069e434837e88d19028174834c27603d629ada20277410 |
|
MD5 | 587de38ad1406982aae64c4c72b6c205 |
|
BLAKE2b-256 | c5fcb4d8c823b5ea445a577b696d99295450bcc774c65f2346486a40b61588df |