Dependency injection library
Project description
# FunDI
Solution for problem no one had before
Fun stays for function(or for fun if you wish) and DI for Dependency Injection
This library provides fast(to write!) dependency injection and convenient(to use!) Dependency Injection for functional programming on python.
No more words, let's try!
from contextlib import ExitStack
from typing import Generator, Any
from fundi import from_, inject, scan
def require_database_session(database_url: str) -> Generator[str, Any]:
print(f"Opened database session at {database_url = }")
yield "database session"
print("Closed database session")
def require_user(session: str = from_(require_database_session)) -> str:
return "user"
def application(user: str = from_(require_user), session: str = from_(require_database_session)):
print(f"Application started with {user = }")
with ExitStack() as stack:
inject({"session_url": "postgresql://kuyugama:insecurepassword@localhost:5432/database"}, scan(application), stack)
Async? YES!!!
import asyncio
from typing import AsyncGenerator, Any
from contextlib import AsyncExitStack
from fundi import from_, ainject, scan
async def require_database_session(database_url: str) -> AsyncGenerator[str, Any]:
print(f"Opened database session at {database_url = }")
yield "database session"
print("Closed database session")
async def require_user(session: str = from_(require_database_session)) -> str:
return "user"
async def application(user: str = from_(require_user), session: str = from_(require_database_session)):
print(f"Application started with {user = }")
async def main():
with AsyncExitStack() as stack:
await ainject({"session_url": "postgresql://kuyugama:insecurepassword@localhost:5432/database"}, scan(application), stack)
asyncio.run(main())
Utilities
fastdi.order- returns order in which dependencies will be resolvedfastdi.tree- returns dependency resolving tree
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
fundi-0.0.1.tar.gz
(27.6 kB
view details)
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
fundi-0.0.1-py3-none-any.whl
(30.3 kB
view details)
File details
Details for the file fundi-0.0.1.tar.gz.
File metadata
- Download URL: fundi-0.0.1.tar.gz
- Upload date:
- Size: 27.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.26
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d2421e6da86300d2dd5422836c0034226265018d1af4d7771766937679c04eb
|
|
| MD5 |
fbc5dddf3cffc40400cd139119b56d05
|
|
| BLAKE2b-256 |
f3aeb4765deda2d8a6902ba460cd975daef2e1dcb2d5582219343e2c91d753a1
|
File details
Details for the file fundi-0.0.1-py3-none-any.whl.
File metadata
- Download URL: fundi-0.0.1-py3-none-any.whl
- Upload date:
- Size: 30.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.26
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ee6ce1f24de24935f7d8f15fdef21b05155322d9858c50d7043b18bfb3efc83
|
|
| MD5 |
dad72d7ddafca8b3f6c3521d15415d98
|
|
| BLAKE2b-256 |
d2554b38c328c0c52d2d7f0eb4e3c7e77d28013510b32b0c92d5f698d28c6f03
|