Skip to main content

fastapi-standalone-di

Latest Version MIT License Build Status Codecov semantic-release

Use FastAPI's dependency injection outside of any web/ASGI context.

FastAPI ships a powerful dependency injection system — Depends, sub-dependencies, yield teardown, per-resolution caching — but it is tightly coupled to the request/response cycle. fastapi-standalone-di reuses that exact machinery so you can resolve and invoke your dependencies from plain Python: CLI scripts, workers, cron jobs, tests — no HTTP server required.

Install

pip install fastapi-standalone-di
# or
uv add fastapi-standalone-di

Usage

Resolve any callable that uses Depends(), exactly as FastAPI would:

import asyncio

from fastapi import Depends

from fastapi_standalone_di import FastAPIContainer


def get_settings() -> dict[str, str]:
    return {"db_url": "postgres://localhost/app"}


class Database:
    def __init__(self, settings: dict[str, str] = Depends(get_settings)) -> None:
        self.url = settings["db_url"]


async def main() -> None:
    async with FastAPIContainer() as container:
        db = await container.get(Database)
        print(db.url)  # postgres://localhost/app


asyncio.run(main())

Sub-dependencies, yield teardown, caching, scopes, dependency overrides, registrable interfaces, per-package binding discovery, shared app state, standalone Request/Response stubs, and query/path/header/cookie parameters are all covered in the documentation.

Documentation

Full documentation is available at toilal.github.io/fastapi-standalone-di. The in-development docs (built from develop) are previewed at toilal.github.io/fastapi-standalone-di/dev/.

Requirements

  • Python ≥ 3.11
  • FastAPI ≥ 0.61

License

MIT © Rémi Alvergnat

CHANGELOG

v0.3.0 (2026-07-07)

Features

  • Discover per-package di.py modules to auto-register bindings (#37, 02fc05b)

v0.2.0 (2026-07-05)

Features

Changelog entries are generated automatically by python-semantic-release from Conventional Commits on release.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastapi_standalone_di-0.3.0.tar.gz (139.8 kB view details)

Uploaded Source

Built Distribution

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

fastapi_standalone_di-0.3.0-py3-none-any.whl (22.1 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_standalone_di-0.3.0.tar.gz.

File metadata

  • Download URL: fastapi_standalone_di-0.3.0.tar.gz
  • Upload date:
  • Size: 139.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","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

Hashes for fastapi_standalone_di-0.3.0.tar.gz
Algorithm Hash digest
SHA256 e9ab124511b091158466c84b5a05243ae01c68d90faa2d84f02e76b86ac1c872
MD5 001e0489d528535ac3f1182dcecc701e
BLAKE2b-256 83715746d56997f69270aa719e97dfbce64a50362cab8b91efadcf4f8e7df04a

See more details on using hashes here.

File details

Details for the file fastapi_standalone_di-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: fastapi_standalone_di-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.27 {"installer":{"name":"uv","version":"0.11.27","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

Hashes for fastapi_standalone_di-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5027b6d24a1d1d914fe9c1ea6b65491ba7e8a063d3b5f588d059c582fc747f8c
MD5 31842279c1e09d488424ad2700b4a7bc
BLAKE2b-256 e65cf5a71430a23d32cf493767fa188a79e39c7dd557d1ecee4bcba0c95450b9

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 Sentry Error logging StatusPage Status page