The 'remix' your architecture needs: NestJS-style modularity, native async performance, and rigorous typing for Python 3.14+. Less boilerplate, more harmony.
Project description
🎧 dijay
Drop the beat on your dependencies.
dijay is the "remix" your architecture needs: NestJS-style modularity, native async performance, and rigorous typing for Python 3.14+. Less boilerplate, more harmony.
🚀 Features
- Modular Architecture: Organize code into
@modules withimports,providers, andexports. - Constructor Injection: Clean, testable injection via
__init__andAnnotated. - Flexible Scopes:
SINGLETON,TRANSIENT, andREQUEST. - Async Native: First-class support for asynchronous factories and lifecycle hooks.
- Custom Providers:
Providedataclass for value, class and factory bindings. - Lifecycle Hooks:
@on_bootstrapand@on_shutdowndecorators. - Circular Dependency Detection: Immediate
RuntimeErroron cycles.
📦 Installation
uv add dijay
⚡ Quick Start
1. Define Services
from dijay import injectable
@injectable()
class CatsService:
def get_all(self):
return ["Meow", "Purr"]
2. Create a Module
from dijay import module
@module(
providers=[CatsService],
exports=[CatsService],
)
class CatsModule:
pass
3. Bootstrap the App
import asyncio
from dijay import Container, module
@module(imports=[CatsModule])
class AppModule:
pass
async def main():
async with Container.from_module(AppModule) as container:
service = await container.resolve(CatsService)
print(service.get_all())
if __name__ == "__main__":
asyncio.run(main())
Container.from_module(AppModule) scans the module tree, registers all providers, and returns a fully configured Container.
🧩 Modules
Modules are the building blocks of a dijay application. They encapsulate providers and manage dependencies.
@module(
imports=[DatabaseModule],
providers=[UserService],
exports=[UserService],
)
class UserModule: ...
Dynamic Modules
For conditional configuration (e.g. swapping implementations by environment), use a static method that returns a DynamicModule:
import os
from dijay import DynamicModule, module
from .fake import FakeDatabaseModule
from .postgres import PostgresDatabaseModule
@module(
imports=[FakeDatabaseModule],
exports=[FakeDatabaseModule],
)
class DatabaseModule:
@staticmethod
def for_root() -> DynamicModule:
db_module = {
"fake": FakeDatabaseModule,
"postgres": PostgresDatabaseModule,
}[os.getenv("DB_PROVIDER", "fake")]
return DynamicModule(
module=DatabaseModule,
imports=[db_module],
exports=[db_module],
)
💉 Custom Providers
Use Provide to register values, classes or factories directly in a module:
from dijay import module, Provide
@module(providers=[
Provide("DB_URL", use_value="postgresql://localhost/mydb"),
Provide(Cache, use_class=RedisCache),
Provide(HttpClient, use_factory=create_http_client),
])
class InfraModule: ...
| Attribute | Description |
|---|---|
use_value |
Binds a constant value to the token. |
use_class |
Binds a class to instantiate for the token. |
use_factory |
Binds a callable to invoke for the token. |
scope |
Lifetime scope (defaults to SINGLETON). |
💉 Advanced Constructor Injection
Use Annotated with Inject to decouple type hints from injection tokens:
from typing import Annotated
from dijay import Inject, injectable
@injectable()
class Persistence:
def __init__(
self,
conn_string: Annotated[str, Inject("DB_URL")]
):
self.conn = conn_string
🌐 FastAPI Integration
Integrate dijay using FastAPI's lifespan to manage the container lifecycle:
from contextlib import asynccontextmanager
from typing import Annotated
from fastapi import Depends, FastAPI, Request
from dijay import Container, module
@module(...)
class AppModule: ...
@asynccontextmanager
async def lifespan(app: FastAPI):
container = Container.from_module(AppModule)
await container.bootstrap()
app.state.container = container
yield
await container.shutdown()
app = FastAPI(lifespan=lifespan)
def inject[T](token: type[T]):
"""FastAPI dependency that resolves a token from the container."""
async def use(request: Request) -> T:
return await request.app.state.container.resolve(
token, id=str(id(request))
)
return Depends(use)
@app.get("/")
async def root(
service: Annotated[MyService, inject(MyService)]
):
return await service.do_something()
🔄 Circular Dependency Detection
dijay monitors the resolution stack. If a cycle is detected (e.g., A → B → A), a RuntimeError is raised immediately.
🛠️ Development
uv sync
uv run pytest
uv build
📄 License
MIT
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dijay-0.3.8.tar.gz.
File metadata
- Download URL: dijay-0.3.8.tar.gz
- Upload date:
- Size: 43.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6662cad8523369b27b3a3ec6b2a3971367aa6dff85f57826e9745a2a568292e9
|
|
| MD5 |
cef9bd7ca1377f6aa6068496e72cbcab
|
|
| BLAKE2b-256 |
f3f259aa5ef08e30f46de2b13523760fc95152364bcc164d41241e55939d0608
|
File details
Details for the file dijay-0.3.8-py3-none-any.whl.
File metadata
- Download URL: dijay-0.3.8-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81489e46f8e7c40b08a8bbbc6c5f7be4b4888ce315bcbbda00957cec71b6d5fc
|
|
| MD5 |
b2110afc73a42fb8ff4f9aa749e7ce7f
|
|
| BLAKE2b-256 |
48cc9ceca23966fd422bcdc5255520b47276209f6b4528950cd025232c378e6f
|