Skip to main content

Integrates the argparse and cmd modules.

Project description

argshell

Integrates the argparse and cmd modules to create custom shells with argparse functionality.

Installation

Install with:

pip install argshell

Usage

Custom shells are created by subclassing the ArgShell class and adding functions of the form do_*(), just like the cmd.Cmd class.
The ArgShell class contains a rich.console.Console object that can be used to print renderables.

In terminal:


Rather than being limited to input strings, you can use argparse style parsers for shell commands.
Create a function that instantiates an ArgShellParser instance, adds arguments, and then returns the ArgShellParser object.
Then you can can decorate do_* functions using with_parser() to pass a Namespace object instead of a string.

In terminal:


The with_parser function also accepts an optional list of functions that accept and return an argshell.Namespace object.
These functions will be executed in order after the parser function parses the arguments.

In terminal:


When using your shell, entering help command will, in addition to the command's doc string, print the help message of the parser that decorates it, if it is decorated.


The capture command can be used to save an svg of another command's output by prepending to a command.
(NOTE: This only works for output printed with ArgShell's console member mentioned earlier.)
The font size is proportional to your terminal width when using the command and any text your terminal wraps will be truncated in the svg.
The following would create a file called add.svg in your current directory: The saved svg:


There's also a "hidden" command for generating documentation called shell_docs.

Executing that command for MyShell:

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

argshell-1.6.3.tar.gz (8.7 kB view hashes)

Uploaded Source

Built Distribution

argshell-1.6.3-py3-none-any.whl (9.5 kB view hashes)

Uploaded Python 3

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