classcli

Command Line Interfaces from custom classes


Keywords
python3, cli, argparse, userio, io, commandline
License
Apache-2.0
Install
pip install classcli==0.0.2

Documentation

ClassCLI

Command Line Interfaces from class definitions.

PyPI version PyPI version Build Status Codacy Badge Maintainability Coverage Status Downloads GitHub license

Very similar to Fire, this is a Python module that let you build command line interfaces directly from collection of classes, saving you from writing boilerplate code.

ClassCLI is built on top of argparse, it create arguments of the cli by inspecting the classes in a given list or in a module. Each compatible class is transformed in a first-level argument, each function in a second-level argument, each function's argument in a third level argument.

ClassCLI uses docstrings to build the CLI's help, kwargs defaults to set CLI's pars defaults and type hints to infer CLI's pars types.

ClassCLI can be used to build CLI interfaces on top of existing APIs, or can be used to write scripts with a full-featured CLI writing commands and arguments as classes and functions.

Example code with one file:

# classcli_example.py
from classcli import CliBuilder


class NonCommandClass:
    pass


class MainCommand:
    """Docstring are used for help."""
    callable_cls = True
    command = 'foo'

    def _base(self):
        """Docstring are used for help in methods too."""
        print('This script is running as a foo.')

    def with_args(self,
                  first_arg: int,  # Type annotations are used to add a type check on the CLI arg
                  second_arg):
        print('This script is running as a foo with %s %s.' % (first_arg, second_arg))


class SecondCommand:
    callable_cls = True
    command = 'bar'

    def _base(self):
        print('This script is running in a bar.')

    def order(self,
              a='Beer'  # method kwargs are translated to optiona args in the form of "--arg"
              ):
        print('You ordered a %s' % a)


if __name__ == '__main__':
    CliBuilder(locals()).run_cli()

asciicast

This projects's goals:

  • this project should let fast CLI prototyping
  • this project should stay lightweight