Build declarative schemas for multi-file configuration directories using Python dataclasses, with dict-based read and write.
Project description
dirconf
dirconf is a Python tool for declaratively specifying configuration directory structures, and constructing Python dict representations of their contents.
For full user documentation and examples please visit https://jmarshrossney.github.io/dirconf/.
Motivations
I wrote this because I sometimes have to work with quite old scientific models that require various configuration files and data inputs in various formats to be present in various locations. I was (and remain) concerned about how easy it can be to misconfigure certain models without realising, and how common workflows compromise reproducibility.
dirconf helps by
-
Allowing the user to describe the structure of a directory representing a valid configuration using Python dataclasses, and validate real directories against this description.
-
Providing a scaffold for defining consistent read/write mechanisms through which complex, distributed configurations in legacy formats can be mapped to Python
dicts.
The ability to represent configurations as dicts is very useful indeed.
With no extra effort, we can:
- Validate configurations using excellent tools such as JSON Schema and Pydantic.
- Generate new configurations and metadata programmatically, as opposed to copying and editing files by hand or writing shell scripts.
Installation
dirconf is a Python package and thus can be installed using pip, or tools such as uv and poetry that wrap around pip.
uv add dirconf
or
pip install dirconf
Currently Python versions equal to or above 3.12 are supported.
Overview of usage
There are two essential steps for adapting dirconf to a specific use-case.
- Define handlers satisfying the
Handlerprotocol for each of the paths (files and directories) present in your configuration. - Define the structure of a valid configuration in terms of its paths and their respective handlers, by subclassing the
DirConfigclass. This is most easily done using themake_dirconfigfunction.
The custom DirConfig subclass can then be used to
- Read a configuration from the filesystem into a Python
dict. - Write a configuration
dictto the filesystem.
These steps are most easily understood through examples: see the docs. All examples are based on self-contained marimo notebooks, which can be found in the examples directory.
Philosophy
dirconf contains ~700 lines of code (including docstrings) and has no dependencies beyond the Standard Library.
This is by design.
I have no intention of developing dirconf into a more sophisticated tool than it already is.
The aim is that is works seamlessly alongside other tools and packages for parsing and validation, without ever getting in the way or creating conflicts.
With that out of the way, please feel free to raise an issue or make a pull request to suggest a change or feature.
See CONTRIBUTING.md for full details.
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
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 dirconf-0.5.2.tar.gz.
File metadata
- Download URL: dirconf-0.5.2.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.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 |
1f01620f6bde43aa5990d3af37876d756bd4d7c0683d80714ce331d7e1416192
|
|
| MD5 |
be3523e619728e560c4397ce50ffc021
|
|
| BLAKE2b-256 |
f398e169af076138383a6577aad738addffa3cf68f602c728fbdeadf868fd78c
|
File details
Details for the file dirconf-0.5.2-py3-none-any.whl.
File metadata
- Download URL: dirconf-0.5.2-py3-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.10 {"installer":{"name":"uv","version":"0.11.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 |
49f5e61569e90832753687600ec269c1d7470e0b176a9ccab4bf149c56723661
|
|
| MD5 |
af14ae26b8080a77b68ece2c9ca393e3
|
|
| BLAKE2b-256 |
f51e55edff92a48063dd2c24f859edc661f2ea1312f2c7659dbb409e71a7e2cb
|