Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

bella-baxter-django

Django integration for the Bella Baxter secrets management platform. Automatically loads secrets from Bella Baxter and makes them available throughout your Django app.

Installation

pip install bella-baxter-django

Quickstart

# settings.py
INSTALLED_APPS = [
    ...
    'bella_baxter_django',
]

BELLA_BAXTER_API_KEY = 'bax-...'
BELLA_BAXTER_URL = 'https://api.bella-baxter.io'  # optional, this is the default
# anywhere in your code
from bella_baxter_django import get_bella

client = get_bella()
secrets = client.get_all_secrets()
db_url = secrets.secrets['DATABASE_URL']

How it works

get_bella() returns a shared BaxterClient instance, initialised lazily on first call and cached for the lifetime of the process. Adding 'bella_baxter_django' to INSTALLED_APPS triggers eager initialisation at Django startup via BellaBaxterConfig.ready(), so the first request doesn't bear the connection cost.

Configuration

Setting Required Default Description
BELLA_BAXTER_API_KEY ✅ — API key (bax-...)
BELLA_BAXTER_URL ❌ https://api.bella-baxter.io Base URL of the Baxter API

Using secrets in views

from django.http import JsonResponse
from bella_baxter_django import get_bella

def health(request):
    bella = get_bella()
    secrets = bella.get_all_secrets()
    return JsonResponse({'db': secrets.secrets.get('DATABASE_URL', 'not set')})

Using secrets in settings.py

# settings.py — bootstrap secrets before Django fully loads
import os
from bella_baxter import BaxterClient, BaxterClientOptions

_bella = BaxterClient(BaxterClientOptions(
    baxter_url=os.environ.get('BELLA_BAXTER_URL', 'https://api.bella-baxter.io'),
    api_key=os.environ['BELLA_BAXTER_API_KEY'],
))
_secrets = _bella.get_all_secrets().secrets

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'HOST': _secrets['DB_HOST'],
        'NAME': _secrets['DB_NAME'],
        'USER': _secrets['DB_USER'],
        'PASSWORD': _secrets['DB_PASSWORD'],
    }
}

Authentication

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

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

Set it in your environment and reference it in settings.py:

export BELLA_BAXTER_API_KEY="bax-..."

Release files for bella-baxter-django 0.1.1rc104

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for bella-baxter-django 0.1.1rc104
File Size Uploaded
bella_baxter_django-0.1.1rc104.tar.gz 3.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for bella-baxter-django 0.1.1rc104
File Interpreter ABI Platform
bella_baxter_django-0.1.1rc104-py3-none-any.whl Python 3 none any Details

Total release size: 7.0 kB

Release files / bella_baxter_django-0.1.1rc104.tar.gz

Download URL bella_baxter_django-0.1.1rc104.tar.gz
Size 3.4 kB
Tags Source
SHA-256 checksum
How to use checksums
eabbaecbf698acd801466548ee22bd1dfd24678a17d5e8bcc334dc8a16c806f3
BLAKE2b-256 checksum
How to use checksums
d90848bc2726db0d5727e3ee687e10999bfab765e70812890b7c2f7f9761da01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / bella_baxter_django-0.1.1rc104-py3-none-any.whl

Download URL bella_baxter_django-0.1.1rc104-py3-none-any.whl
Size 3.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
a2454d9f5f73a4a15db5b5990d822d2b28c6ec8b9b26b1b298d3745e2af52835
BLAKE2b-256 checksum
How to use checksums
4c0e42d92b24a98e5e8eb6dfb0a40b72bbb3b52e4331dba37f8d34320115d1bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.1rc104 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page