A library to create ergonomic, auto-validated configuration models with great support for static type annotations.
Project description
Comprehensive Configuration
A simple configuration library that lets you create a pydantic-like model for your configuration.
Features
- Supports static type checking
- toml writer
- json writer
- Number Fields
- Text Fields (with regex filtering)
- List fields
- Table fields
- TableSpec (Model) fields
- Sections
- Include doc comments in Section
- auto loading
- initialize default config (with auto loader)
- yaml writer
- section list (via a Table field)
- Field type unions (overwriting normal union syntax)
- per attribute doc comments (inline and noninline)
- enum support (Via
spec.ConfigEnumand python'senum.Enum) - fully supported string escapes
Example (Python)
# example.py
from comprehensiveconfig import ConfigSpec
from comprehensiveconfig.spec import Section, Integer, Float, Text, List
from comprehensiveconfig.toml import TomlWriter
class MyConfigSpec(ConfigSpec,
default_file="myconfig.toml",
writer=TomlWriter,
create_file=True):
class MySection(Section, name="My_Section"):
some_field = Integer(10)
other_field = Text("Some Default Text")
class SubSection(Section):
'''An example Sub Section'''
x = Integer(10)
class Credentials(Section):
'''Example credentials section'''
email = Text("example@email.com", regex=r"^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$")
password = Text("MyPassword")
some_field = Float(6.9)
list_of_stuff = List(["12", "13", "14"], inner_type=Text())
# Accessing values from globally loaded config (if one exists, otherwise it accesses the actual Field class)
print(MyConfigSpec.some_field)
print(MyConfigSpec.MySection.other_field)
# Another way to open configuration
second_config = MyConfigSpec.load("another_config.toml", TomlWriter)
Example (toml output)
some_field = 6.9
list_of_stuff = ["12", "13", "14"]
[My_Section]
some_field = 10
other_field = "Some Default Text"
[My_Section.SubSection]
# An example Sub Section
x = 10
[Credentials]
# Example credentials section
email = "example@email.com"
password = "MyPassword"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
comprehensiveconfig-1.0.0.tar.gz
(13.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file comprehensiveconfig-1.0.0.tar.gz.
File metadata
- Download URL: comprehensiveconfig-1.0.0.tar.gz
- Upload date:
- Size: 13.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31bb9a27370eab4d7cb5b7022f24a8266ba78731add2994197d2e9e6fb3c3b02
|
|
| MD5 |
3508f7343ae7b9581bd6955cd831c313
|
|
| BLAKE2b-256 |
130754bafba0c91a597a1a1314132639d4d0de9810e3d886f5c3c0811dc028f6
|
File details
Details for the file comprehensiveconfig-1.0.0-py3-none-any.whl.
File metadata
- Download URL: comprehensiveconfig-1.0.0-py3-none-any.whl
- Upload date:
- Size: 13.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cbe82ebb6fce71b589278a6a27248e44d5b8ec933dfd4819d25cb20d086c96f
|
|
| MD5 |
558967ebe9c2f50a0307dc7546401510
|
|
| BLAKE2b-256 |
05b5ff0b58486e5b2f3ffd1057a6dfc8164cca4ee504f9ab5c45ae8e4234d92c
|