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

  • fundi.order - returns order in which dependencies will be resolved
  • fundi.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.4.tar.gz (27.9 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.4-py3-none-any.whl (30.5 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for fundi-0.0.4.tar.gz
Algorithm Hash digest
SHA256 5f6f3d7da1054e2b63397456ebec71ca801e5ae28512d20397b29a5b60508041
MD5 593ad01b960dc5c822da5297999def43
BLAKE2b-256 4b6aef774b33696500ed9123cd5fe342aacb7c467b46921850464a4d23f61153

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fundi-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 30.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.26

File hashes

Hashes for fundi-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 f1199237779a864ed7f17850359042f50ecb0962918246f6409ac41deb54d423
MD5 0f645dcd0e661643a48ae2428db51e9c
BLAKE2b-256 566da22d05785a616d8bbcb116332f43af34826d4b574b9e592bfb221388faf9

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