Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 989 Bytes

README.md

File metadata and controls

54 lines (34 loc) · 989 Bytes

shellish - Command-line/shell mashup framework.

This module combines the Python standard library modules argparse and cmd to provided a unified way to make cli programs that can also be interactive (when invoked in "shell" mode).

The main benefit to using this package is streamlined command hierarchy when you want to have rich set of subcommands along with a pretty powerful tab completion layer that parses argparse arguments automagically.

Requirements

  • None more black!

Installation

python3.4 ./setup.py build
python3.4 ./setup.py install

Compatibility

  • Python 3.4+

TODO

  • Documentation
  • Documentation
  • Documentation

Getting Started

TBD

Examples

Hello World Decorator Nesting (Subcommands) Alternate Styles Tab Completion

All Examples