Strongly typed tool configuration classes for argument parsing.
Project description
Config Classes (cfgclasses)
CI/CD | |
Package | |
Meta |
Strongly typed tool configuration classes for argument parsing.
Config classes are representations of a python tools CLI configuration options built on dataclasses. This allows individual tools to focus on specifying their configuration structure without the overhead of interacting with argparse and the typeless Namespace it returns.
See the documnentation for full user guides and API references.
Installation
pip install cfgclasses
Features
- Simple class definitions using dataclasses
- Nested config and tool submodes reduce code repetition
- Mutually exclusive groups support
- Validation functions for reliable verification of config
- Argument transformations reducing repetition of common patterns (e.g. reading contents of a file)
Example Usage
The following shows a simple script setup using a Config class.
import dataclasses
import sys
from cfgclasses import arg, optional, parse_args
from pathlib import Path
from typing import Optional
@dataclasses.dataclass
class Config:
# Simple options are required on the CLI
intopt: int = arg("A simple integer field")
inpath: Path = arg("A required Path field")
# Optional fields default to None when not specified
outpath: Optional[Path] = optional("An optional Path field")
# Can specify custom default or default_factory values
stropt: str = arg("A string field with a default", default="X")
# The authors preference is to put run modes on the config classes.
# This is entirely optional, and main() methods that take in the Config
# object as their only arg is a perfectly sensible alternative.
def run(self) -> None:
"""Main entry point of this script."""
...
if __name__ == '__main__':
config = parse_args(Config, sys.argv[1:], prog="example")
config.run()
The -h
output from this script is:
usage: example [-h] --intopt INTOPT --inpath INPATH [--outpath OUTPATH] [--stropt STROPT]
options:
-h, --help show this help message and exit
--intopt INTOPT A simple integer field
--inpath INPATH A required Path field
--outpath OUTPATH An optional Path field
--stropt STROPT A string field with a default
This same script implemented in argparse would look like this:
import argparse
import sys
from pathlib import Path
def _parse_args(argv: list[str]):
parser = argparse.ArgumentParser(prog="example")
# In argparse options default to None unless you specified they're required.
# Help messages are optional in argparse, but required in cfgclasses.
parser.add_argument("--intopt", type=int, help="A simple integer field", required=True)
parser.add_arugment("--inpath", type=Path, help="A required Path field", required=True)
# Optional fields are the default in argparse, so type is actually Optional[Path]
parser.add_argument("--outpath", type=Path, help="An optional Path field")
# Defaults work the same, but there's no default_factory in argparse
parser.add_argument("--stropt", default=X", help="A string field with a default")
def main(args: argparse.Namespace) -> None:
"""Main entry point of this script."""
# Note: args here is relatively typeless - if one of the argument types is
# changed (e.g. from str to Path) mypy will not pick up on this error.
...
if __name__ == '__main__':
args = _parse_args(sys.argv[1:])
main(args)
For further examples see the examples subdirectory.
License
CFG-Classes is distributed under the terms of 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
File details
Details for the file cfgclasses-2.2.0.tar.gz
.
File metadata
- Download URL: cfgclasses-2.2.0.tar.gz
- Upload date:
- Size: 17.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4701b400703825596f51a22468ca9062de6534db4af97043695a194e0d0d8f1 |
|
MD5 | a09d3415dbf2348fe61017a79a25c688 |
|
BLAKE2b-256 | c4360828b690abad771e13a973ae00a35e0abd5dc4da29ddecf4ec18f97a9bc2 |
File details
Details for the file cfgclasses-2.2.0-py3-none-any.whl
.
File metadata
- Download URL: cfgclasses-2.2.0-py3-none-any.whl
- Upload date:
- Size: 21.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 304a371075b44646395542684f58526ef2185ad95c32f049d9a1433d3a14bd16 |
|
MD5 | 41ec7e968e164d41666004ba1de74c61 |
|
BLAKE2b-256 | 45dc4619e563684828f8eec4967db179437b835f13077f0e288e5a29ab9d8f6c |