Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.11 KB

README.rst

File metadata and controls

44 lines (31 loc) · 1.11 KB

helcli

Latest Version Build Status Documentation

HelCLI is an opinionated way to create and organize your command line programs, and aims to help bootstrap the process and provide a foundation that works for most use cases.

In the most simplest form, HelCLI requires three lines of code to have a functional command line program.

from helcli import HelCLI

cli = HelCLI(sub_commands='command_dir', description='A simple CLI')
cli.run()

Install

pip install helcli

Documentation

To see some examples of HelCLI in use see the example project, or the documentation.