Skip to main content

A tool to easily build command line interpreters

Project description

License Python Version pypi Documentation Status Build codecov

About

argparseDecorator is a tool to ease working with the argparse library to build custom command line interpreters.

Instead of setting up the ArgumentParser object by hand and then adding subcommands and all the required arguments the argparseDecorator supplies a custom decorator to mark any function as a command and to generate the ArgumentParser from the function signature.

With this it is quite easy to make command line interfaces like, for example, a shell like cli:

from argparsedecorator import *

cli = ArgParseDecorator()


@cli.command
def ls(arg1, arg2, arg3):
    ...


@cli.command
def mv(...):
    ...


@cli.command
def cp(...):
    ...

cmdline = input()
cli.execute(cmdline)

The ArgParseDecorator uses both the signature of the decorated function and its docstring to infer information, metadata and description of the function arguments and passes them to the underlying ArgumentParser.

Here is an example for using ArgParseDecorator to create a hypothetical 'ls' command:

from __future__ import annotations  # required for Python 3.8 and 3.9. Not required for Python 3.10+
from argparsedecorator import *  # import the ArgParseDecorator API

cli = ArgParseDecorator()


@cli.command
def ls(
        files: ZeroOrMore[str],
        a: Flag = False,  # create '-a' flag that is 'False' if '-a' is not in the command line.
        ignore: Option | Exactly1[str] = "",  # create optional '--ignore PATTERN' argument
        columns: Option | int | Choices[Literal["range(1,5)"]] = 1,  # valid input for '--columns' is 1 to 4
        sort: Option | Choices[Literal["fwd", "rev"]] = "fwd",  # '--sort {fwd,rev}' with default 'fwd'
):
    """
    List information about files (the current directory by default).
    :param files: List of files, may be empty.

    :param a: do not ignore entries strating with '.'
    :alias a: --all

    :param ignore: do not list entries matching PATTERN
    :metavar ignore: PATTERN

    :param columns: number of output columns, must be between 1 and 4. Default is 1
    :alias columns: -c

    :param sort: alphabetic direction of output, either 'fwd' (default) or 'rev'
    :alias sort: -s
    """
    # for demonstration just return all input back to the caller, i.e. parser.execute(...)
    return {"files": files, "a": a, "ignore": ignore, "columns": columns, "sort": sort}

This example shows how annotations are used to add some metadata to the arguments which will be used by the argparse library to interpret the command line input. Take a look at the documentation to learn more about the supported annotations.

Now a command line can be parsed and executed like this:

result = cli.execute("ls -a -c 2 --sort rev --ignore *.log")

ArgParseDecorator uses the docstring of the decorated function to get a help string for the command, and it also parses Sphinx style directives to provide help strings for arguments as well as additional metadata that can not be written as annotations.

The information provided by the docstring is used by the built-in help command:

parser.execute("help ls")
usage:  ls [-a] [--ignore PATTERN] [--columns {1,2,3,4}] [--sort {fwd,rev}] [files ...]

List information about files (the current directory by default).

positional arguments:
  files                 List of files, may be empty.

options:
  -a, --all             do not ignore entries strating with '.'
  --ignore PATTERN      do not list entries matching PATTERN
  --columns {1,2,3,4}, -c {1,2,3,4}
                        number of output columns, must be between 1 and 4
  --sort {fwd,rev}, -s {fwd,rev}
                        alphabetic direction of output, either 'fwd' (default) or 'rev'

Requirements

  • Works best with Python 3.10 or higher

    • the new type unions with '|' make the annotations much more readable
  • Works with Python 3.8+

    • some features require the use of 'from __future__ import annotations'
  • No other dependencies

Installation

If the requirements are met, then a simple

 $ pip import argparseDecorator

will install the argParseDecorator module.

Documentation

Comprehensive documentation is available at https://argparseDecorator.readthedocs.io/.

Version

  • 1.4.0
    • added ignore_annotations and ignore_docstring flags
  • 1.3.1
    • Fixed some bugs in the documentation
  • 1.3.0
    • Added support for command aliases
    • New Annotations: RequiredFlag, RequiredOption
  • 1.2.0
    • Added support for sys.argv argument lists in execute()
    • Using shlex to split commandlines into tokens
    • Numerous minor bug fixes
  • 1.1.0
    • Added support for execute_async()
  • 1.0.2
    • Added support for quoted input to the execute method
  • 1.0.1
    • first release

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

argparsedecorator-1.4.0.tar.gz (34.8 kB view details)

Uploaded Source

Built Distribution

ArgParseDecorator-1.4.0-py3-none-any.whl (27.7 kB view details)

Uploaded Python 3

File details

Details for the file argparsedecorator-1.4.0.tar.gz.

File metadata

  • Download URL: argparsedecorator-1.4.0.tar.gz
  • Upload date:
  • Size: 34.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for argparsedecorator-1.4.0.tar.gz
Algorithm Hash digest
SHA256 c3a9500fce4515e989963d1163170ba173e49aab6728d8260079d960d368e1d3
MD5 a68149710ee0b147e55c82a183bd4e02
BLAKE2b-256 f7edea6fe16145e9c8779ea94f16b502f110c56f8b53306f4b87a9fed9874925

See more details on using hashes here.

File details

Details for the file ArgParseDecorator-1.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ArgParseDecorator-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b88b3b7ed095b64a32d3daefaa1cde09813a7c6fe0d7f6a5f67a449b551c68f8
MD5 8d3cd35e59b3af21fefdabccf6692152
BLAKE2b-256 5fd6cb9553ac3ab1411c454b9acd3d4a03daa0e5cae684d75c4f97d8f2a92628

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