A dependency injection library for Python, Optimized for serverless applications
Project description
ididi
Introduction
ididi is a zero-configuration, minimal-code-intrusiveness dependency injection library for Python that works out of the box.
It allows you to define dependencies in a declarative way without any boilerplate code.
Install
pip install ididi
Usage
Decorate your top level dependencies and leave the rest to ididi
from didi import DependencyGraph
dg = DependencyGraph()
class Config:
def __init__(self, env: str = "prod"):
self.env = env
class Database:
def __init__(self, config: Config):
self.config = config
class Cache:
def __init__(self, config: Config):
self.config = config
class UserRepository:
def __init__(self, db: Database, cache: Cache):
self.db = db
self.cache = cache
class AuthService:
def __init__(self, db: Database):
self.db = db
@dg.node
class UserService:
def __init__(self, repo: UserRepository, auth: AuthService):
self.repo = repo
self.auth = auth
@dg.node
def auth_service_factory(database: Database) -> AuthService:
return AuthService(db=database)
service = dg.resolve(UserService)
assert isinstance(service.repo.db, Database)
assert isinstance(service.repo.cache, Cache)
assert isinstance(service.auth.db, Database)
assert service.auth.db is service.repo.db
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
Runtime override is also supported
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"
Features
- Automatically resolve dependencies
- Circular dependencies detection
- Support Forward References
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
- bulitin types are not resolvable by nature, it requires default value to be provided.
- runtime override with
dg.resolve
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
ididi-0.1.5.tar.gz
(59.1 kB
view details)
Built Distribution
ididi-0.1.5-py3-none-any.whl
(17.2 kB
view details)
File details
Details for the file ididi-0.1.5.tar.gz
.
File metadata
- Download URL: ididi-0.1.5.tar.gz
- Upload date:
- Size: 59.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59d4273c1486d4a20b25c2e9ab82e521f67a0297a431abb0ce0d069cd9ac42f7 |
|
MD5 | 2fa4547de0c73bff9c3dc6341959d837 |
|
BLAKE2b-256 | ba55d6466f82c2295fb573bc2677aa0939a379c13b536df6c2731bed3fa6540d |
File details
Details for the file ididi-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: ididi-0.1.5-py3-none-any.whl
- Upload date:
- Size: 17.2 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 | ae47c516791f81ce1bf66f8cf702aa898033927a91f5838c37bf57d2b4dae00c |
|
MD5 | b776b365a87887b1d21df81a129cd18c |
|
BLAKE2b-256 | dc3a2c8ca1c69c6bb7708871eb8e8224530d341d74294befbe8fa35c61d92e4c |