Develop extensible and powerful command line interface shells with minimal code.
Python Pluggable Shell Interface, or pypsi, is a framework for developing
command line based shell interfaces, akin to bash or csh. It is intended to be
a replacement for the builtin Python cmd
module.
Pypsi is targeted towards both large scale and rapid prototype interface shells. The bootstraping code is very small with very little boilerplate. Pypsi ships with a great deal of capabilities out of the box, all of which can be used or ignored. Pypsi is pluggable which allows commands, features, and plugins to be developed independently in their own source files and/or Python classes. This results in a very clean source repository. The actual code to setup and run the shell is extremely small, on the order of ~20-50 lines of code.
Pypsi, at its core, is pluggable. There are many hooks that allow plugin authors to extend and modify the core behavior of pypsi. Commands are isolated classes that make distribution, sharing, and modification easy.
The pypsi source code is hosted at GitHub and releases are stored at PyPI. The latest version can also be install via pip:
$ pip install pypsi
Documentation can be found on GitHub Pages.
The following capabilities ship with pypsi and are available out of the box.
- I/O redirection
- Flexible API
- Tab completion
- Multiplatform
- Minimal dependencies
- Colors
- Session tips and message of the day (MOTD)
- Automated help, usage messages, and argument parsing
- Word wrapping
- Term highlighting (grep)
- Tables
- Prompt wizards
cmd
plugin to migrate existingcmd
commands into pypsi
The demo.py
source file can be run to demonstrate the base commands and
features that ship with pypsi (the demo.py
file can be downloaded from the
git repo at https://github.com/ameily/pypsi/blob/master/demo.py). The commands
displayed below are all optional: pypsi does not require the use of any command
or plugin. The demo.py
file is meant to be a reference to the Pypsi API and
design. Use it as a starting point for your first shell.
pypsi)> var name = "Paul" pypsi)> var house = "Atredis" pypsi)> echo My name is $name, and I belong to House $house My name is Paul, and I belong to House Atredis pypsi)> var --list name Paul house Atredis pypsi)> var -d name pypsi)> echo $name pypsi)> var name = "Paul $house" pypsi)> echo $name Paul Atredis
pypsi)> echo Hello Hello pypsi)> echo Hello > output.txt pypsi)> echo Goodbye pypsi)> xargs -I{} "echo line: {}" < output.txt line: Hello line: Goodbye pypsi)> cat output.txt | grep ll Hello
Allows execution of external applications. Command mimics Python's
os.system()
function.
pypsi)> ls pypsi: ls: command not found pypsi)> system ls include/ src/ README.md pypsi)> system ls | system grep md README.md
Allows the developer to set which command gets called if one does not exist in
the current shell. This is very useful, for example, if you want to fallback on
any OS installed executables. In this example, the fallback command is
system
.
pypsi)> ls include/ src/ README.md
pypsi)> echo Hello && echo --bad-arg && echo goodbye Hello echo: unrecgonized arguments: --bad-arg pypsi)> echo Hello ; echo --bad-arg ; echo goodbye Hello echo: unrecgonized arguments: --bad-arg goodbye pypsi)> echo --bad-arg || echo first failed echo: unrecgonized arguments: --bad-arg first failed
pypsi)> echo Hello, \ > Dave Hello, Dave pypsi)> echo This \ > is \ > pypsi \ > and it rocks This is pypsi and it rocks
Macros are analogous to functions in bash. They provide the ability to create new commands in the shell.
pypsi)> macro hello > echo Hello, $1 > echo Goodbye from macro $0 > end pypsi)> hello Adam Hello, Adam Goodbye from macro hello
Tab completion is easier than ever with PyPsi. Using the included command_completer()
function, arguments and sub-commands are completed automatically when the tab
key is pressed. To get started, add the use of command_completer
to your
custom command's complete function:
def complete(self, shell, args, prefix):
from pypsi.completers import command_completer
return completions = command_completer(self.parser, shell, args, prefix)
Just pass command_completer
the parser you created for the command, along with
the standard arguments to the complete
function, and let PyPsi work it's magic!
pypsi)> macro -<tab> --delete --help --list --show -d -h -l -s
For each argument added to a PyPsi Argument parser, a callback function to get
the possible completions can be specified via the completer argument.
The callback function will be called from command_completer
anytime tab is
pressed while the user is currently entering that argument's value. Ex:
# Snippet from macro.py
self.parser.add_argument(
'-s', '--show', help='print macro body',
metavar='NAME', completer=self.complete_macros
)
...
def complete_macros(self, shell, args, prefix):
# returns a list of macro names in the current shell
return list(shell.ctx.macros.keys())
pypsi)> macro --show <tab> hello goodbye
See tail.py
, help.py
, and macro.py
for examples.
Prompt wizards ask the user a series of questions and request input. Input is tab completed, validated, and returned. The wizard can be used for easy configuration of components that require a substantial amount of input.
pypsi)> wizard +-----------------------------------------------------------------------------+ | Entering Example Configuration Wizard | +-----------------------------------------------------------------------------+ Shows various examples of wizard steps To exit, enter either Ctrl+C, Ctrl+D, or 'quit'. For help about the current step, enter 'help' or '?'. IP Address: <enter> Error: Value is required Local IP Address or Host name IP Address: 192.168.0.10 TCP Port [1337]: <enter> File path: /var/lo<tab> local/ lock/ log/ File path: /var/log/<tab> Xorg.1.log btmp faillog upstart/ Xorg.1.log.old dist-upgrade/ fontconfig.log wtmp alternatives.log distccd.log fsck/ apt/ dmesg lastlog bootstrap.log dpkg.log mongodb/ File path: /var/log/dpkg.log Shell mode [local]: asdf Error: Invalid choice Mode of the shell Shell mode [local]: remote Config ID Config Value ================================================================================ ip_addr 172.16.11.204 port 1337 path /var/log/dpkg.log mode remote
pypsi
is released under the ISC permissive license.