Skip to main content

Simplifies the process of parsing command-line arguments and configurations from YAML files

Project description

Installation

pip install yaml-arg-configer

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.

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"

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

Parse Command-Line Arguments

Use the parse_args function to parse command-line arguments:

from yaml_arg_configer import YamlArgParser

yaml_parser = YamlArgParser()
cmd_args = yaml_parser.parse_cmd_args()
# return config with dict format by default
args = yaml_parser.parse_args(cmd_args)

print(args)
# config with argparse.Namespace format
print(yaml_parser.get_args())

Command-Line Usage

Run your script with configuration options:

python my_script.py -dc defaults.yaml -d configs -c config1 config2
  • -d, --cfg_dir: Directory containing configuration files.
  • -c, --cfg: Names of configuration files to use (without .yaml extension).
  • -dc, --default_yaml: Path to the default yaml file, it's optional when a path is passed in YamlArgParser()
  • -ctx, --ctx_yaml: Path to the context yaml file, it's optional
  • --strict: Constraints user configuration defined in the default_yaml file
  • --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())
print(yaml_parser['arg1'])

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

yaml_arg_configer-0.1.1.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

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

yaml_arg_configer-0.1.1-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file yaml_arg_configer-0.1.1.tar.gz.

File metadata

  • Download URL: yaml_arg_configer-0.1.1.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.13

File hashes

Hashes for yaml_arg_configer-0.1.1.tar.gz
Algorithm Hash digest
SHA256 668aa44d269647060ff5b766d73bab0030e49a3a37a3224a22f33df25bb9df30
MD5 1ac7f6ddbc20414aa52d123553f2a414
BLAKE2b-256 0b81d9b868466b8a28a51c32799e159cfce01807e057816b5d61d80a9e9e472d

See more details on using hashes here.

File details

Details for the file yaml_arg_configer-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for yaml_arg_configer-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 12bb269abe6f8fb5d87a92974b95f18ee2e380881fbdc1329a48a8a1d3e3a2e6
MD5 2085c7f59dd21d9e4d530aced3a5d1d1
BLAKE2b-256 f63ecf14d3e82588c636c0dbcc61b4bbc162430e85be6a0d9aac3b2efce81021

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