Simplifies the process of parsing command-line arguments and configurations from YAML files
Project description
YAML Argument Parser
Overview
The YamlArgParser class simplifies the process of parsing command-line arguments and configurations from YAML files, combining default values with those specified via the command line or additional YAML files.
Features
- Default Configuration: Load default settings from a YAML file.
- Command-Line Override: Override default settings using command-line arguments.
- Multiple Configurations: Support for multiple YAML configuration files.
- Help Documentation: Generate help documentation for each configuration option.
Installation
This library is not available via PyPI, so include it manually in your project by copying the yaml_argparser.py file into your project directory and importing it as needed.
Configuration
1. Default Configuration YAML File
Create a default configuration file (e.g., defaults.yaml) with settings:
arg1:
default: ~ # Set arg1 default value to None
help: "Help documentation for arg1"
arg2:
default: ~ # Set arg2 default value to None
help: "Help documentation for arg2"
2. User Configuration YAML Files
Create user configuration files (e.g., config1.yaml):
arg1: value1 # Set arg1 value to value1
And additional configurations (e.g., config2.yaml):
arg2: value2 # Set arg2 value to value2
3. Command-Line Arguments
Use the parse_args function to parse command-line arguments:
from yaml_argparse import parse_args
yaml_parser = parse_args(default_yaml='defaults.yaml')
Command-Line Usage
Run your script with configuration options:
python my_script.py -d configs -c config1 config2
-d,--cfg_dir: Directory containing configuration files.-c,--cfg: Names of configuration files to use (without.yamlextension).--doc: Get help documentation for a specific argument.--docs: Print help documentation for all arguments.
Accessing Configurations
Retrieve parsed configurations using:
print(yaml_parser.get_args_dict())
print(yaml_parser.get_args())
Saving Configurations
Save current configurations to a YAML file:
yaml_parser.save_config('output_config.yaml')
Contributing
Contributions are welcome! Please fork the repository, make your changes, and submit a pull request. Ensure that any new features or bug fixes include appropriate tests.
License
This project is licensed under the MIT License.
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
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 yaml_arg_configer-0.1.0.tar.gz.
File metadata
- Download URL: yaml_arg_configer-0.1.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c75e253b4827cd30b9cdd47b312f3085bfcb125fb93d3ea6495c7125d48a74d
|
|
| MD5 |
f2ea757e9111c0078c27bb6ec94a0bb4
|
|
| BLAKE2b-256 |
b9711c6570f33bb6af2f9d41cf01ea6917855205c7517c49ae971b307f4c19d3
|
File details
Details for the file yaml_arg_configer-0.1.0-py3-none-any.whl.
File metadata
- Download URL: yaml_arg_configer-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a82fa1e6e1f988bd7a5796631505855b2656e93af6d5afaf0a0f2fb8b5a3aa05
|
|
| MD5 |
159d352379f548038dce1e2011bd7f93
|
|
| BLAKE2b-256 |
1668d41685adafe3c1798fab052f27a65c3030bee82593d1b35fbd330e428bef
|