Skip to main content

A simple configuration manager

Project description

Configurationlib

Python Tests

A simple configuration manager for Python that allows you to easily manage nested configurations using JSON files.

Features

  • Load and save configurations from/to a JSON, YAML or .env file.
  • Create nested dictionaries dynamically.
  • Retrieve configuration values easily.

Installation

You can install the package via pip:

pip install configurationlib

Note

If the file specified does not exist, it will be created.

Usage

[!WARNING] Please do note, if you specify the wrong file with the wrong format, it may load incorrectly or may break your file.

Here is a simple example of the usage of this module:

import configurationlib

# Create an instance of the configuration manager
config = configurationlib.Instance(file="config.json") # Choose any file name you like! The file will be created if it does not exist.

# Use save() to get access to the current configuration and set values
config.save()["dic1"] = {}  # Initialize a new dictionary
config.save()["dic1"]["afewmoredic"] = {}  # Initialize a nested dictionary
config.save()["dic1"]["afewmoredic"]["key"] = "value"  # Set a value
config.save()['weird'] = True

# Retrieve values from nested dictionaries using get()
retrieved_value = config.get()["dic1"]["afewmoredic"]["key"] # Use config.get to retrieve the value
print(retrieved_value)  # Output: value

# Save changes after modifying (optional, since save is called after every modification)
config.save()

Changing formats

If you want, You can change the format of the saved file (YAML, JSON, dotENV) the default already is JSON so if you want json, you don't need to do anything. Here is how you can change it to YAML:

import configurationlib

# Create an instance of the configuration manager
config = configurationlib.Instance(file="config.json", format=configurationlib.Format.YAML) # Use Yaml. Change this to ENV to use env

# Use save() to get access to the current configuration and set values
config.save()["dic1"] = {}  # Initialize a new dictionary
config.save()["dic1"]["afewmoredic"] = {}  # Initialize a nested dictionary
config.save()["dic1"]["afewmoredic"]["key"] = "value"  # Set a value

# Retrieve values from nested dictionaries using get()
retrieved_value = config.get()["dic1"]["afewmoredic"]["key"] # Use config.get to retrieve the value
print(retrieved_value)  # Output: value

# Save changes after modifying (optional, since save is called after every modification)
config.save()

The only line that changes is config = configurationlib.Instance(file="config.json", format=configurationlib.Format.YAML nothing else changes. It will automatically save the data into the data you'd like! If you remove format argument, it will default to JSON.

Hot Reloading

[!NOTE] Hot reloading is disabled by default

If you want to enable hot reloading, Use this:

config = configurationlib.Instance(file="config.json", format=configurationlib.Format.YAML, hot_reloading=True)

Hot reloading will check the file for changes and update the variable.

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

configurationlib-1.2.2.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

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

configurationlib-1.2.2-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file configurationlib-1.2.2.tar.gz.

File metadata

  • Download URL: configurationlib-1.2.2.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for configurationlib-1.2.2.tar.gz
Algorithm Hash digest
SHA256 895cc56ed088e115bd543364c1795a2f6e90b632e8d344794e38f311bb6ae606
MD5 5263b7b096e5ee8005c3784b63498c94
BLAKE2b-256 25fd48c19d044a911e0c2d4273f6f7dc6210d284de1a7fc4a6f3109a98c8a853

See more details on using hashes here.

File details

Details for the file configurationlib-1.2.2-py3-none-any.whl.

File metadata

File hashes

Hashes for configurationlib-1.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 efc2e7794cb929205c2d7bbecd37bcaff30c52ff50880c4107afa3e8d326d880
MD5 9039f437ca6b3746ddd5f26ac900023e
BLAKE2b-256 10ed741a3cadce3ff82218d5f8ac16dcbe88a3f5567623a00b1d82eecd8a87b8

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