Skip to main content

FastAPI integration for the Bella Baxter secret management SDK

Project description

bella-baxter-fastapi

FastAPI integration for the Bella Baxter secrets management platform. Provides a BellaDepends dependency annotation for injecting a BaxterClient into route handlers.

Installation

pip install bella-baxter-fastapi

Quickstart

from contextlib import asynccontextmanager
from fastapi import FastAPI
from bella_baxter_fastapi import init_bella, BellaDepends

@asynccontextmanager
async def lifespan(app: FastAPI):
    init_bella(api_key="bax-...")
    yield

app = FastAPI(lifespan=lifespan)

@app.get("/health")
async def health(bella: BellaDepends):
    secrets = await bella.get_all_secrets_async()
    return {"database": secrets.secrets.get("DATABASE_URL")}

init_bella()

Call once at startup (inside a lifespan handler or module level) to initialise the shared client:

from bella_baxter_fastapi import init_bella

init_bella(
    api_key="bax-...",
    baxter_url="https://api.bella-baxter.io",  # optional
)

BellaDepends

A typed Annotated dependency that injects the shared BaxterClient:

from bella_baxter_fastapi import BellaDepends

@app.get("/secrets")
async def get_secrets(bella: BellaDepends):
    resp = await bella.get_all_secrets_async()
    return resp.secrets

Configuration via environment variables

import os
from bella_baxter_fastapi import init_bella

init_bella(
    api_key=os.environ["BELLA_BAXTER_API_KEY"],
    baxter_url=os.environ.get("BELLA_BAXTER_URL", "https://api.bella-baxter.io"),
)

Authentication

Generate an API key via the CLI or the Bella WebApp:

bella api-keys create --env production --name "FastAPI Production"

Using secrets at startup (before first request)

@asynccontextmanager
async def lifespan(app: FastAPI):
    init_bella(api_key=os.environ["BELLA_BAXTER_API_KEY"])

    # Pre-fetch secrets to warm the cache
    from bella_baxter_fastapi import _get_bella_client
    client = _get_bella_client()
    secrets = await client.get_all_secrets_async()
    app.state.db_url = secrets.secrets["DATABASE_URL"]
    yield

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

bella_baxter_fastapi-0.1.1rc31.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

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

bella_baxter_fastapi-0.1.1rc31-py3-none-any.whl (3.3 kB view details)

Uploaded Python 3

File details

Details for the file bella_baxter_fastapi-0.1.1rc31.tar.gz.

File metadata

  • Download URL: bella_baxter_fastapi-0.1.1rc31.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bella_baxter_fastapi-0.1.1rc31.tar.gz
Algorithm Hash digest
SHA256 329753a6129f2216e81680b606b5d53336c1b1a59f9cdab020bf5a4d3680bdf3
MD5 e7fb787283f9b9979a339d22e3137863
BLAKE2b-256 3e5dccbdd25590af6af0327cf7707e90cf34b6009ae6cf7e7616a94f01d9bb53

See more details on using hashes here.

Provenance

The following attestation bundles were made for bella_baxter_fastapi-0.1.1rc31.tar.gz:

Publisher: publish.yml on Cosmic-Chimps/bella-baxter-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bella_baxter_fastapi-0.1.1rc31-py3-none-any.whl.

File metadata

File hashes

Hashes for bella_baxter_fastapi-0.1.1rc31-py3-none-any.whl
Algorithm Hash digest
SHA256 edf9b8500cc2eb5f737d561456e3659b993af5425cbe72f812275b0767ba617c
MD5 f3de7c633cf52c0e403a97de4b768408
BLAKE2b-256 c4f270c6729565bc6c783303427e7e989219a983cd346dc8caea7f32b2d04621

See more details on using hashes here.

Provenance

The following attestation bundles were made for bella_baxter_fastapi-0.1.1rc31-py3-none-any.whl:

Publisher: publish.yml on Cosmic-Chimps/bella-baxter-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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