Skip to main content

A python package for reading configurations from different sources

Project description

bubbleconf

A tiny, battery-included configuration helper for Python projects. Use a dataclass to declare your configuration, then populate it from command-line arguments, environment variables, and sensible defaults with predictable priority.

Installation

pip install bubbleconf

Or, for development from this repository:

# from the repo root
python -m pip install --upgrade pip
python -m pip install --upgrade uv
uv sync

Short example

@dataclass
class MyConfig:
  version: str
  is_cool: bool = False
  number_of_things: int = 0
  ratio: float = 1.0

cfg = parse_config(MyConfig)
print(cfg)

You can set values by environment variables (VERSION, IS_COOL, ...), by CLI flags, or by defaults in the dataclass. The parser chooses values in a predictable priority order:

$ VERSION="0.1.2" uv run test.py --is_cool=true                           
MyConfig(version='0.1.2', is_cool=True, number_of_things=0, ratio=1.0)

CLI example

Advanced usage

  • Boolean flags accept 0/1, true/false, and common truthy/falsy strings.
  • Unknown or invalid values raise a ConfigError with an easy-to-read message (TTY-aware when printed in terminals).

.env file support

bubbleconf can read configuration from a .env file in the working directory. The path can be overridden with the DOTENV_FILE environment variable.

The dotenv source is included in the default priority order (cli, env, dotenv, json, default), so process environment variables still take precedence over file values. Supported syntax:

# comments and blank lines are ignored
NAME=Alice
export PORT=8080
GREETING="hello world"
TOKEN='shh # not a comment inside quotes'
DEBUG=true  # trailing comments after unquoted values are stripped

To use only .env (and dataclass defaults), pass an explicit priority:

cfg = parse_config(MyConfig, priority=("dotenv", "default"))

Pretty-printing the resolved configuration

Pass pretty_log=True to log the fully resolved configuration as a boxed table at INFO level on the bubbleconf logger:

import logging
logging.basicConfig(level=logging.INFO)

cfg = parse_config(MyConfig, pretty_log=True)

Output (colorized when stderr is a TTY; honours NO_COLOR and BUBBLECONF_FORCE_COLOR):

Resolved configuration: MyConfig
┌────────┬───────────┬────────┐
│ Field  │ Value     │ Source │
├────────┼───────────┼────────┤
│ name   │ "Alice"   │ env    │
│ port   │ 9000      │ cli    │
│ debug  │ false     │ default│
└────────┴───────────┴────────┘

Marking fields as secret

Use typing.Annotated with the Secret marker on any field that should never appear in logs. Its value is replaced with "***" in both pretty_log=True and report=True output, while the real value is still set on the dataclass instance:

from dataclasses import dataclass
from typing import Annotated
from bubbleconf import Secret, parse_config

@dataclass
class ServiceConfig:
    name: str
    api_key: Annotated[str, Secret]
    db_password: Annotated[str, Secret] = "dev"

cfg = parse_config(ServiceConfig, pretty_log=True)
# cfg.api_key contains the real value; the log shows "***"

Contributing

PRs are welcome. The project uses uv to manage the local environment. Run tests with:

uv run pytest -q

If you change packaging metadata, the CI workflow .github/workflows/publish.yml will build and either publish a dev build to TestPyPI or (for tagged commits) publish to PyPI.

License

This project is MIT-licensed. See the LICENSE file for details.

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

bubbleconf-0.3.2.tar.gz (20.2 kB view details)

Uploaded Source

Built Distribution

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

bubbleconf-0.3.2-py3-none-any.whl (17.7 kB view details)

Uploaded Python 3

File details

Details for the file bubbleconf-0.3.2.tar.gz.

File metadata

  • Download URL: bubbleconf-0.3.2.tar.gz
  • Upload date:
  • Size: 20.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for bubbleconf-0.3.2.tar.gz
Algorithm Hash digest
SHA256 fb01816904e20549421b95bb1d2862bcb54ae803fd2bc9b3e01273f449d915d1
MD5 37fe42eda9853eea48ed6d4107b6ba91
BLAKE2b-256 53b28df7012ade7f479870e4e4c0ea8046c4218e6813bb551f998821486b75f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bubbleconf-0.3.2.tar.gz:

Publisher: publish.yml on bubbleconf/bubbleconf

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

File details

Details for the file bubbleconf-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: bubbleconf-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for bubbleconf-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 19e036db2a1728b011a837aecc548637dc74bebf9da205a8357789ff7adf1137
MD5 0f19aee6ee7adf5e9ea0fc534a844b77
BLAKE2b-256 fc1c0d9a7e66581717974658a706f3b894074541562e582edd03ce11456326bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bubbleconf-0.3.2-py3-none-any.whl:

Publisher: publish.yml on bubbleconf/bubbleconf

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