Skip to content
This repository has been archived by the owner on Aug 8, 2022. It is now read-only.

Latest commit

 

History

History
26 lines (17 loc) · 720 Bytes

command_line.rst

File metadata and controls

26 lines (17 loc) · 720 Bytes

Command Line

The cli package contains the implementation for the command line interface.

We use click to build the command line. See https://click.palletsprojects.com/en/7.x/ for documentation.

The commands module contains the root click group as well as functions shared by commands.

Note

As most of these commands are extremely thin wrappers, we do not have any tests for them. This may change in the future if the CLI commands become more complex.

src.cli.commands