A simple command line argument parser package.
Project description
jduargs
Simple command line argument parser.
Installation
> pip(3) install (-U) jduargs
and
from jduargs import ArgumentParser
Instanciation
parser = ArgumentParser(description="default string", epilog="default string")
"description" and "epilog" are optional parameters. The provided strings will be respectively written at the beginning and at the end of the help provided -h or --help.
Methods
def add(self, key: str, short: str, type: type = str, required: bool = True, description: str = "", choices: list = [])
... to add an expected argument. The parameters are:
- key: the name of the parameter
- short: the short version of the key, as a single caracter
- type: the parameter type class
- required: define if the argument is mandatory or not. If set to False and the parameter is not provided, the default value is set by the type constructor
- description: explanation of what this parameter is used for. If no description is provided, an empty string is used instead
- choices: a list containing all possible values for this argument. If the passed value is not in the list, the program will stop with an error
def from_json(self, path: str)
... to import the expected parameters from a json file. The dictionnary keys are the parameters name. For each key, it should contains the "short" and "type" keys as strings, and a required key as a boolean.
def to_json(self, filename: str)
... to export the parameter dictionnary to a json file.
Note: both methods exists in the "yaml" variant.
def compile(self, args: List[str]) -> dict
... to parse the provided argument list with respect to the defined parameters. It returns a dictionnary to access the different passed arguments values.
Usage
First create an instance of the parser:
parser = ArgumentParser()
Then add the expected arguments to parse:
parser.add("file", "f", description="file name without extension", choices = ["file1","file2"])
parser.add("path", "p", required=False, description="path to database tree")
Compile the parser with the input arguments provided from command line:
arguments = parser.compile(sys.argv[1:])
arguments is a dictionnary containing all parsed values. THe key is the name of the parameter given to the add() method.
You can also access each parameters with the simple bracket operator, directly on the parser, after compiling it:
file = parser["file"]
path = parser["path"]
Full example
Main python code:
import sys
from jduargs.parser import ArgumentParser
parser = ArgumentParser(
description="Example use of the argument parser.",
epilog="Have fun !",
)
parser.add("file", "f", description="file name w/o extension", choices=["file1","file2"])
parser.add("path", "p", required=False, description="path to main folder")
results = parser.compile(sys.argv[1:])
file = results["file"] // similar to parser["file"]
path = results["path"] // similar to parser["path"]
print(f"{file=}")
print(f"{path=}")
Script execution:
$ python main.py
To get help, use -h or --help command line options.
$ python main.py -h
usage: .\test.py -ffile [-ppath]
Example use of the argument parser.
positional arguments:
-f: file <class 'str'>
file name w/o extension
Possible values are ['file1', 'file2'].
optional arguments:
-p: path <class 'str'>
path to main folder
-h, --help
show this help message and exit
Have fun !
$ python .\test.py -ffile3
Provided file not in ['file1', 'file2']
$ python .\test.py -ffile2
file='file2'
path=''
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
File details
Details for the file jduargs-0.6.1.tar.gz
.
File metadata
- Download URL: jduargs-0.6.1.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7e3a253c3ea12651178f69b3b003ab70c3c45cbe6ebdf40501e8daa574a8323 |
|
MD5 | 7af697a2fc5e4962055b9d0d7fbcf32b |
|
BLAKE2b-256 | 33ce154fe9964c896035f6d55cfa78cd60a1d410379b7e5d10ba3eee46ad89f0 |