Skip to main content

Flexible layered configuration management built on Pydantic Settings.

Project description

CI PyPI - Version PyPI - Python Version GitHub License

Durango

Durango is a lightweight configuration management toolkit that layers strongly typed settings, configuration files, environment variables, and programmatic overrides using Pydantic Settings. It is designed for CLI tools and services that need predictable precedence, multi-format config files, and clear error reporting.

Key Features

  • Config precedence: defaults → config file → environment variables → user overrides.
  • Format flexibility: parse YAML, JSON, or TOML files by default with optional extras.
  • Typed settings: describe your configuration with Pydantic models and receive fully validated objects.
  • Reload aware: refresh configuration at runtime and hook into lifecycle callbacks.
  • Extensible: adapt environment prefixes, merge behaviour, and file lookup strategies to fit your application.

Installation

Durango is published on PyPI as durango. Install it with your preferred tool:

# Using uv (recommended)
uv add durango

# Using pip
pip install durango

Durango supports Python 3.9 through 3.12.

Quick Start

from durango import ConfigManager, DurangoSettings


class AppSettings(DurangoSettings):
    debug: bool = False
    api_url: str


manager = ConfigManager(
    settings_type=AppSettings,
    identifier="MYAPP",
    default_file="~/.config/myapp/settings.yaml",
)

settings = manager.load()
print(settings.api_url)

If ~/.config/myapp/settings.yaml does not exist, Durango will create it and populate it with the model defaults before layering environment variables and runtime overrides.

Environment variables take the form MYAPP__API_URL=true. To override a nested section named database, use MYAPP__DATABASE__URL.

Documentation

  • Docs site (WIP): see docs/
  • Architecture notes: ARCH.md
  • Working session notes: notes/STATUS.md

Contributing

See docs/contributing.md for full setup, workflow, and review guidelines. Highlights:

  • Install dependencies with uv sync --all-extras --dev.
  • Run uv run invoke ci before opening a pull request.
  • Publishing and release automation are covered in docs/publishing.md.

License

Durango is available under the MIT License. See LICENSE 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

durango-0.1.3.tar.gz (329.1 kB view details)

Uploaded Source

Built Distribution

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

durango-0.1.3-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

Details for the file durango-0.1.3.tar.gz.

File metadata

  • Download URL: durango-0.1.3.tar.gz
  • Upload date:
  • Size: 329.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.19

File hashes

Hashes for durango-0.1.3.tar.gz
Algorithm Hash digest
SHA256 85727beeddf9c617ccc65b8b46bb7380c9805c5b4a8f085275254a68aa8027ba
MD5 816075b15a24ce3a1d1d36867359c320
BLAKE2b-256 bd85ddf76a5c130b8d3b45feed4cfc040f23df3cd3927965cf9e8d6e91575d7d

See more details on using hashes here.

File details

Details for the file durango-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: durango-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.19

File hashes

Hashes for durango-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 99ed0099cb8ec523202aa2bed3cedd96f3de99e1c80b900ecf71a284a8ae3cc5
MD5 9b659e8d01a2d0964a42210f299a5131
BLAKE2b-256 2d5d4210d1e37d66717561feedc7de3b86241a465cda7e549651dd720617b10e

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