Skip to main content

A simple configuration library for Python.

Project description

SafeConfig Library

Overview

SafeConfig provides a structured and flexible way to define, validate, and manage configurations for your Python applications. It supports hierarchical configuration structures with fields that can be variables, arrays, or nested structures. It also includes a command-line interface (CLI) parser to easily override configurations via CLI arguments.

Features

  • Define hierarchical configurations with nested structures.
  • Support for variable, array, and struct field types.
  • Validation of field values.
  • Load and save configurations from/to JSON and YAML files.
  • Override configurations using command-line arguments.

Installation

To install the library, clone the repository and install the required dependencies:

pip install safeconfig

Usage

Defining a Configuration

To define a configuration, create a class that inherits from Struct and define the fields using Variable, Array, and other Struct subclasses.

from safeconfig import Variable, Array, Struct

class SubConfig(Struct):
    field1 = Variable(int, description="An integer field", default=10)
    field2 = Variable(str, description="A string field", default="default")

class MyConfig(Struct):
    int_var = Variable(int, description="An integer variable", default=1)
    str_var = Variable(str, description="A string variable", default="hello")
    arr_var = Array(int, description="An array of integers", default=[1, 2, 3])
    struct_var = SubConfig(description="A nested struct")

config = MyConfig()

Loading Configuration from a File

You can load the configuration from a JSON or YAML file using the read method.

config.read("path/to/config.yaml")

Note that the Struct will be used as a schema to validate all the attributes.

Saving Configuration to a File

You can save the configuration to a JSON or YAML file using the write method.

config.write("path/to/config.yaml")

Accessing and Modifying Configuration

You can access and modify the configuration fields directly or using the set and get methods.

# Accessing fields
print(config.int_var)
print(config.struct_var.field1)

# Modifying fields
config.int_var = 42
config.struct_var.field1 = 20

# Using set and get methods
config.set({'int_var': 42, 'struct_var': {'field1': 20}})
print(config.get())

Using the CLI Parser

The CLI parser allows you to override configuration values using command-line arguments. It also supports loading configurations from a file specified via CLI.

from safeconfig import CLIParser

if __name__ == "__main__":
    parser = CLIParser(MyConfig())
    config = parser.parse_args()
    print(config)

Now you can load configuration files by passing a config file path or override fields with corresponding command line arguments:

python your_script.py --config path/to/config.yaml \
--int_var 42 \
--struct_var.field1 20 \
--print_config

Help command will is automatically generated based on the schema:

python your_script.py --help

Example Configuration

Here is an example configuration file in YAML format:

int_var: 5
str_var: "example"
arr_var:
  - 1
  - 2
  - 3
struct_var:
  field1: 100
  field2: "nested value"

Contributing

Contributions are welcome. Please fork the repository and submit a pull request with your changes.

License

This project is licensed under the MIT License. See the LICENSE file for more 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

safeconfig-1.0.0.tar.gz (8.7 kB view details)

Uploaded Source

File details

Details for the file safeconfig-1.0.0.tar.gz.

File metadata

  • Download URL: safeconfig-1.0.0.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for safeconfig-1.0.0.tar.gz
Algorithm Hash digest
SHA256 ecac1fe89a64631faefa7f8b2228e1894e87a30748aa2325db665914346c17bb
MD5 d0b922a118a07428d5e12c75df0a53a7
BLAKE2b-256 95448204d8e35aac04a6952067e269904796356d3a80132459cf1763fe7740dd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page