Skip to main content

Python Pluggable Shell Interface

Project description

Python Pluggable Shell Interface, or pypsi, is a framework for developing command line based shell interfaces, akin to bash or csh.

Pypsi was designed around the Python cmd module. The Python cmd module is fine for small projects with a limited number of commands and features. However, as the interface grows, maintainability and extensibility becomes increasingly hard. Adding features such as argument parsing after a few commands have been implemented is exectremely time consuming.

Pypsi is targetted towards both rapid prototype interfaces and large stable shells. The bootstraping code is very small with very little boilerplate. Pypsi ships with a great deal of capabilities box of the box, all of which can be used or ignore. Pypsi is pluggable which allows commands, features, and plugins 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 exetremely 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 modifing easy.

Caveats

The only major caveat when using pypsi is that it only supports Python 3. Python 3 is the future.

Releases

The pypsi source code is located on GitHub and on PyPI. The latest version can also be install via pip:

pip install pypsi

Features

The following capabilities ship with pypsi and are available out of the box.

  • I/O redirection

  • String-based pipes

  • 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 existing cmd commands into pypsi

Demo

The demo.py source file can be run to show off some of 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.

Variables

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 -l
name     Paul
house    Atredis
pypsi)> var -d name
pypsi)> echo $name

pypsi)> var name = "Paul $house"
pypsi)> echo $name
Paul Atredis

I/O redirection

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

System commands

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

Fallback command

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

Command chaining

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

Multiline commands

pypsi)> echo Hello, \
> Dave
Hello, Dave
pypsi)> echo This \
> is \
> pypsi \
> and it rocks
This is pypsi and it rocks

Macros

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

License

pypsi is released under the BSD 3-Clause license.

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

pypsi-1.0.tar.gz (34.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pypsi-1.0.win-amd64.exe (290.8 kB view details)

Uploaded Source

pypsi-1.0.win32.exe (259.5 kB view details)

Uploaded Source

pypsi-1.0-py3-none-any.whl (66.4 kB view details)

Uploaded Python 3

File details

Details for the file pypsi-1.0.tar.gz.

File metadata

  • Download URL: pypsi-1.0.tar.gz
  • Upload date:
  • Size: 34.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pypsi-1.0.tar.gz
Algorithm Hash digest
SHA256 8e79b333a917ad61d76138b9d817db56cc51b6b9fd4bf3f12fd83221e3625fbe
MD5 fcfbdc3ae97d223b1b8e49b14ef4eece
BLAKE2b-256 67d5afc37f046303fc645a645e2454f7cef7de83b5364095896ea1e5093d9796

See more details on using hashes here.

File details

Details for the file pypsi-1.0.win-amd64.exe.

File metadata

  • Download URL: pypsi-1.0.win-amd64.exe
  • Upload date:
  • Size: 290.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pypsi-1.0.win-amd64.exe
Algorithm Hash digest
SHA256 eab0d293e6d41ec239b4e9fc00e138235fd70e732326ab79f73986c34bca3fe7
MD5 81e7facb3b62f8e895b0cf96b2998d08
BLAKE2b-256 76b472e094dd4589dc3268d89beec0e04d5430760b1ad4af58e0ea3b82245bd9

See more details on using hashes here.

File details

Details for the file pypsi-1.0.win32.exe.

File metadata

  • Download URL: pypsi-1.0.win32.exe
  • Upload date:
  • Size: 259.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pypsi-1.0.win32.exe
Algorithm Hash digest
SHA256 8dc582f314021a780815dcc86ca5e9276fac9c56c7ebb6320b0702b6778a4e73
MD5 d920b4ee7fb2eb92a88f3b8acd57e934
BLAKE2b-256 d85077d0c35bccf0657a29d437e3b2edaac6582891473662a29e9c5c745180ff

See more details on using hashes here.

File details

Details for the file pypsi-1.0-py3-none-any.whl.

File metadata

  • Download URL: pypsi-1.0-py3-none-any.whl
  • Upload date:
  • Size: 66.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pypsi-1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ae0f87ca8a4be512e0cf9fab78832de3192597764422137a6b5cdfa8f6399411
MD5 e75d635389106e80ca37e52b5dd58b93
BLAKE2b-256 03bc5f2a98e21a62001d63a2c14d7b79a360063532bc686fefda9aa2196220b0

See more details on using hashes here.

Supported by

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