Skip to main content

Production-oriented unified runtime for FastAPI + Streamlit

Project description

FluxLit

Documentation Status PyPI version Python versions CI Release License

FastAPI and Streamlit on one public port. FluxLit gives you one FluxLit app object, a Uvicorn-powered ASGI gateway, and a managed Streamlit sidecar so your API and UI deploy together without hand-rolling a reverse proxy.

  • UI: served from the app root on the URL Uvicorn prints, typically http://127.0.0.1:8000.
  • API: mounted under /api by default, with OpenAPI at /api/docs.
  • Routing: /api/* goes to FastAPI; everything else, including Streamlit WebSockets, is proxied to Streamlit.

Docs: fluxlit.readthedocs.io · Security: SECURITY.md · Roadmap: ROADMAP.md


Install

Python 3.10+.

pip install fluxlit

Optional JWT / OIDC / BFF helpers: pip install "fluxlit[auth]" — see Auth recipes.

For local development on FluxLit itself, clone the repository and run pip install -e ".[dev]".


Quick Start

fluxlit new my-app && cd my-app   # optional

app.py:

from fluxlit import FluxLit

app = FluxLit(title="Admin Portal")

@app.api.get("/users")
def users():
    return [{"name": "Ada"}]

@app.page("/")
def home(st, client):
    st.title("Dashboard")
    st.write(client.get("/users").json())
fluxlit dev    # default target app:app; or fluxlit dev your.module:app

Open the URL Uvicorn prints. The default gateway is http://127.0.0.1:8000; try GET /api/users or visit /api/docs.

In Streamlit, use paths like client.get("/users"), not "/api/users". Secured routes need a client with credentials — Auth recipes.


What Ships

  • One app object: FluxLit exposes .api for FastAPI and @app.page(...) for Streamlit pages.
  • Gateway runtime: fluxlit dev and fluxlit run start Uvicorn plus a managed Streamlit subprocess.
  • Operational defaults: health/readiness probes, request IDs, optional JSON logs, configurable gateway timeouts, body limits, concurrency, and graceful shutdown.
  • Quality gate: package tests enforce 100% coverage for src/fluxlit without coverage pragmas.
  • Deployment paths: fluxlit build, Docker Compose, Kubernetes manifests, proxy smoke tests, and production TLS/proxy guidance.
  • Optional auth: JWT validation, OIDC/BFF helpers, Streamlit-safe API clients, and security docs via fluxlit[auth].
  • Testing and diagnostics: FluxLitTestClient, streamlit_main_path(), AppTest recipes, URL-session test-mode defaults, and expanded fluxlit doctor diagnostics for imports, proxy/config state, and optional extras.

Start with the Quick start, then see Architecture, CLI, Configuration, and Deployment.


Configuration

Precedence: CLI → environment (FLUXLIT_*, .env) → fluxlit.toml / [tool.fluxlit] → defaults.

# fluxlit.toml (optional)
target = "app:app"
gateway_host = "127.0.0.1"
gateway_port = 8000

Variable reference: Configuration.

Gateway → Streamlit (optional env): tune upstream HTTP timeouts, max proxied request body (returns 413 when exceeded), concurrent upstream HTTP cap, httpx connection limits, WebSocket open/ping/close timeouts, and optional frame size — see the Gateway proxy rows in Configuration. FLUXLIT_UVICORN_GRACEFUL_SHUTDOWN_TIMEOUT_S maps to Uvicorn’s graceful drain window when set (fluxlit dev / fluxlit run).

Logs: enable structured gateway lines with FLUXLIT_ENABLE_GATEWAY_ACCESS_LOG=1; for one JSON object per line in log aggregators, use fluxlit.logging.JsonLogFormatter (examples in Observability). Avoid logging secrets—see Secrets.

TLS / edge: behind a real proxy, tighten FLUXLIT_FORWARDED_ALLOW_IPS, validate X-Forwarded-Proto, and read Production TLS before enabling strict HSTS or CSP elsewhere.


Production References


Project Layout

my_app/
├── app.py
├── fluxlit.toml
├── .env              # not committed
└── pkg/pages/        # optional: discover_pages(...)

Contributors

pip install -e ".[dev]"
python -m ruff format && python -m ruff check
python -m mypy src/fluxlit
ty check
python -m pytest -n auto --cov=fluxlit --cov-report=term-missing --cov-fail-under=100

Contributing · Testing


Status

FluxLit is in the 0.x line and actively hardening toward production use. Current releases include the unified gateway, page discovery, typed ApiClient, health/readiness probes, auth helpers, URL session utilities, AppTest-friendly testing helpers, expanded doctor diagnostics, gateway limits, structured logging helpers, Prometheus metrics, CI security audit/SBOM generation, Docker/Kubernetes examples, deployment runbooks, and a 100% package coverage gate for src/fluxlit.

See the changelog, support matrix, and roadmap for release status and remaining work.

MIT — see LICENSE.

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

fluxlit-0.7.0.tar.gz (156.7 kB view details)

Uploaded Source

Built Distribution

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

fluxlit-0.7.0-py3-none-any.whl (91.9 kB view details)

Uploaded Python 3

File details

Details for the file fluxlit-0.7.0.tar.gz.

File metadata

  • Download URL: fluxlit-0.7.0.tar.gz
  • Upload date:
  • Size: 156.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fluxlit-0.7.0.tar.gz
Algorithm Hash digest
SHA256 8bbdbae27ab6268e6885272bc2d6f1ae40092832c9f7d474533205fdd4b8fa2c
MD5 bb0667606a4c47e7955d51b4df24e682
BLAKE2b-256 d6bc0c58aeb5206f5fa2a91d2ab43d4949c501fd90cf1549455c3303c3aeaf85

See more details on using hashes here.

File details

Details for the file fluxlit-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: fluxlit-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 91.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fluxlit-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c53cdc79221ffc819955e3aa78a6c56ed03f108e37e1e637beb9e4a80309c33e
MD5 e62be763c93d6b174ac253261ef0de35
BLAKE2b-256 d362253762c2ef52eef743a0b8a5d34a2af090815245b29f139cfba0181e8850

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