Config2Code simplifies configuration management by automatically generating Python dataclasses from YAML or JSON files. This tool enhances code readability, maintainability, and type safety, saving you time and effort.
Project description
Config2Class: A Tool to Generate Python Dataclasses from Configuration Files
Introduction
Config2Code is a Python tool designed to streamline the process of converting configuration files (YAML or JSON or TOML) into Python dataclasses. By automating the generation of dataclasses, you can improve code readability, maintainability, and type safety.
Installation
You can install Config2Code using pip:
pip install config2code
Usage
Basic Example
-
Prepare your configuration file: Create a YAML or JSON file containing your configuration data. Here's an example YAML file:
DatabaseConfig: host: localhost port: 5432 user: myuser password: mypassword
-
Run the tool: Use the
config2codecommand-line interface to convert the configuration file:config2code to-code --input input.yaml --output output.py
This will generate a Python file
output.pycontaining a dataclass representing the configuration:from dataclasses import dataclass @dataclass class DatabaseConfig: host: str port: int user: str password: str
Placeholder Example
Sometimes you put redundant data in your config file because it is more convenient to only move parts of the config further down the road. Examples could be a machine learning pipeline where you have parameters for your dataset and model which can have redundant values. To counter the problem of always changing multiple values at once in your config we introduce placeholder. A placeholder is a path packed into a token ${<path-in-config>} which points to a value you want to insert automatically into your loaded config file. This path starts always at the yaml root and ends at the value to insert.
pipeline:
dataset:
x_dim: 42
y_dim: 5
batch_size: 128
shuffle: True
model:
input_dim: ${pipeline.dataset.x_dim}
output_dim: ${pipeline.dataset.y_dim}
activation_func: ReLU
learning_rate: 0.0001
Here we use the API of OmegaConf. Therefor you are allowed to use all kinds of funny stuff like custom evaluators or missing value imputation or merging config files from multiple files or .... .
Please note for the last one is no tested feature for merging configs from multiple files into one big structured config.
Hydra Integration
Additionally we support now a Hydra integration where provide functions to add the hydra ArgumentParser to your custom parser.
Note: Please note this feature is still underdevelopment. Therefor please be careful while merging those two argument parser and setup the wrapper function. A rough example can be examined here
Service
This service monitors the requested configuration file. If the services detects changes in the file it will automatically write those changes into the specified output.py.
You can start the service for example with:
config2code service-start --input input.yaml --output output.py
To stop it you can stop all with
config2code stop-all
Use Config in Code
After you created your python config you can easily use as follows:
from output import DatabaseConfig
config = DatabaseConfig.from_file("input.yaml")
# access config field with dot operator
config.host
This is different to a normal DictConfig from OmegaConf because this supports code completion in your coding environment.
Key Features
- Supports YAML, JSON and TOML: Easily convert both formats.
- Automatic dataclass generation: Generates well-structured dataclasses.
- Nested configuration support: Handles nested structures in your configuration files.
- Type inference: Infers types for fields based on their values.
- Placeholder: Choose which values in your config file are dependent on others
Additional Considerations
- Complex data structures: For more complex data structures, consider using custom type hints or additional configuration options.
- Error handling: The tool includes basic error handling for file loading and parsing.
- Future enhancements: We plan to add support for additional file formats, advanced type inference, and more customization options.
Features to expand
- add VS Code extension (create new file on config file save)
- add renaming feature from config to code (renaming a field in the config file should resolve in renaming a field in the code
- expand token feature so you can access memeber of a list
{{<path>.<to>.<element>[<index>]}}
Contributing
We welcome contributions to improve Config2Code. Feel free to fork the repository, make changes, and submit a pull request.
License
This project is licensed under the MIT License.
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 config2class-0.3.1.tar.gz.
File metadata
- Download URL: config2class-0.3.1.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.11.0-13-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44ccb744b31416651179e66fdd524475b4b8e8fc5b9e4e418c49576621384333
|
|
| MD5 |
024b0bc62080ee89239e41ab52f6a24e
|
|
| BLAKE2b-256 |
7373fc250401c3afe35749848caddd950fdb6cb56ab98f8f2ed87441e1f2b6b8
|
File details
Details for the file config2class-0.3.1-py3-none-any.whl.
File metadata
- Download URL: config2class-0.3.1-py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.11.0-13-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c146ff202c248e1d0bca9867af1de539faa01a1a18bfc82e7fadec306659f608
|
|
| MD5 |
db17b388d1abbbf8d02b73200a9ce048
|
|
| BLAKE2b-256 |
297e9698e5710d8be8a15be3eb1628d889eb9127e5b5c658ef54d9b52ffe1e60
|