Skip to main content

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 contextlib import AsyncExitStack
from typing import AsyncGenerator, Any

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 resolved
  • fastdi.tree - returns dependency resolving tree

Project details


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.2.tar.gz (27.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fundi-0.0.2-py3-none-any.whl (30.3 kB view details)

Uploaded Python 3

File details

Details for the file fundi-0.0.2.tar.gz.

File metadata

  • Download URL: fundi-0.0.2.tar.gz
  • Upload date:
  • Size: 27.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.26

File hashes

Hashes for fundi-0.0.2.tar.gz
Algorithm Hash digest
SHA256 5de8e44aca75f11a8682a29a7ccccdfc571aa0576dd9b7ad0d18c90633953458
MD5 a7e15ad044f3c5dd35a2a00bdff40b42
BLAKE2b-256 cc8f5aaa53b647a8c797dbafdaa22d998fea361bf93f0a7800e26921afdac9f1

See more details on using hashes here.

File details

Details for the file fundi-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: fundi-0.0.2-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

Hashes for fundi-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0420b009267631452ab85f7ecb3c3c20785ce8b1eebc8da48cbf6ae496452e9a
MD5 1b3e509367dd627d11ad18b16cdbb606
BLAKE2b-256 a015ddf0a20a320d05584da5c4eaa0ffbde09a89469e08b50a500867659b881a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page