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.4.tar.gz
(59.0 kB
view details)
Built Distribution
ididi-0.1.4-py3-none-any.whl
(17.3 kB
view details)
File details
Details for the file ididi-0.1.4.tar.gz
.
File metadata
- Download URL: ididi-0.1.4.tar.gz
- Upload date:
- Size: 59.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a8114fe7ede6af4da2ebb75b319e5e9a37d15b2c868a9a616f4823afa5d79c3 |
|
MD5 | dc272712717e0d45c4093d7804792ed6 |
|
BLAKE2b-256 | 1904d50c22c12eccaf95e7e50507838acebe781bebbe2f9149b2631fb1687206 |
File details
Details for the file ididi-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: ididi-0.1.4-py3-none-any.whl
- Upload date:
- Size: 17.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 | 5bb47a806f7301c9771895fdb27cfbf831bb1c3d1ece0555f339a9aa945c8c0f |
|
MD5 | 9177dbf314c7369f8fb0b466f3556008 |
|
BLAKE2b-256 | 9bdae9444cd36e3e9cdedeeaf5f7118faf7f3af2b6166956c6f6138e1cdecc86 |