Command-Line Interface

To launch candis‘s Rich Internet Application (RIA), simply type

$ candis

At any given time, you can view the help as follows

$ candis --help

via Python

All of candis‘s functionality can be executed through the candis.main() function provided by the candis.cli module.

candis.main(argv=None)

A starting execution point for candis

Parameters:argv (list(str) or None (default)) – (optional) a list of valid arguments
Returns:A valid exit code. Check out Python Documentation for a list of various exit codes.
Return type:int
Example:
>>> import candis
>>> candis.main() # Launch the Rich Internet Application (RIA)