Skip to main content

Flexible, simple, extensible settings loader from environment, AWS SSM, AWS Secrets Manager, configparser .ini, and more.

Project description

layered-settings

layered-settings is a simple and configurable hierarchical settings library for Python, including Django, Flask, or any other scripts that need settings from potentially a variety of sources. With it you can load settings from the environment, Amazon's SSM, Amazon's Secrets Manager, local configparser .ini files, and more.

Installation

The package is available on pip as layered-settings. Run:

pip install layered-settings

If you want to use the AWS SSM layer or Secrets Manager layer, include the [aws] extra:

pip install layered-settings[aws]

then import via:

from layered_settings import initialize_settings, loaders

Example Usage

import os
from layered_settings import initialize_settings
from layered_settings import loaders

get_setting = initialize_settings(
    sources=[
        # Lowest priority is setting-defaults.ini.  All configuration values should be defaulted in here.
        # The `loaders.ConfigParserLoader` is optional - if you pass a string ending in .ini, it wraps it in
        # a `loaders.ConfigParserLoader` for you.
        loaders.ConfigParserLoader(os.path.join(SCRIPT_DIR, "setting-defaults.ini")),

        # Next priority is a "user" settings file.
        os.path.expanduser("~/.app-settings.ini"),

        # You can include a dictionary in the sources too...
        {
            "general": {"CLIENT_NAME": "client"},
            "email": {"EMAIL_HOST": "smtp.example.com", "EMAIL_PORT": 25},
        },

        # Secrets Manager works similar to SSM. If the secret is a json object, the object's keys will be the layered setting "key"
        # If the secret is just plain text, the secret's name will be used as the key
        loaders.SecretsManagerLoader(f"/app/stage/", aws_region="us-east-1") if ALLOW_SSM_CONFIGURATION else None,

        # If we are able/willing to reach out to AWS, do so.  A `None` in the initialize_settings sources
        # will simply be ignored.
        loaders.SSMLoader(f"/app/stage/", aws_region="us-east-1") if ALLOW_SSM_CONFIGURATION else None,

        # Top priority -- env var in the format APP__section__key.
        loaders.EnvLoader("APP__{section}__{key}"),
    ]
)

DATABASE_HOST = get_setting("database", "DATABASE_HOST")
AWS_SECRET_KEY = get_setting("aws", "AWS_SECRET_KEY")
...

Frameworks Supported

This library is tested using Python 3.x.

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

layered_settings-1.1.1.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

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

layered_settings-1.1.1-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file layered_settings-1.1.1.tar.gz.

File metadata

  • Download URL: layered_settings-1.1.1.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for layered_settings-1.1.1.tar.gz
Algorithm Hash digest
SHA256 8c63867ade4c4473e4c91db96b7c1a0065ee88907399e9575c8b42b6a9b4a95b
MD5 a5ce834aad2417bbc93d65f296f01d04
BLAKE2b-256 9c873ed2e1c5fc9427051b4c12c98010876db6729d9a041524fb1fcfb0bf7b65

See more details on using hashes here.

File details

Details for the file layered_settings-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for layered_settings-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 417b7053dc6ca2f82a0337f06214b53c072dd143be7ebe3bcd3bb1ae97727eb3
MD5 d5b2959b8d2747316fc6146c34738a28
BLAKE2b-256 b735a97726d5b0c9402a90b58c4b9627b1e25aa5efc3e6301a4f605abd0813df

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