Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jduargs-0.5.1.tar.gz (6.9 kB view details)

Uploaded Source

File details

Details for the file jduargs-0.5.1.tar.gz.

File metadata

  • Download URL: jduargs-0.5.1.tar.gz
  • Upload date:
  • Size: 6.9 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

Hashes for jduargs-0.5.1.tar.gz
Algorithm Hash digest
SHA256 fcc673916d1e15b24f770994519f9befe3703f6d1d7a885e753eced43e98ebe5
MD5 ef7668b5bd15fdf4183e7aec0d717160
BLAKE2b-256 2d5f24b901e3f2c7f8ca15cc94792c9f55339f1a1e51e5bb6074d0fc2ffb7762

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page