Skip to content

cli

CliAppSettings

Bases: BaseSettings

CLI application settings.

cli_cmd

cli_cmd()

Run the selected subcommand.

Source code in src/clabe/cli.py
40
41
42
def cli_cmd(self):
    """Run the selected subcommand."""
    CliApp.run_subcommand(self)

main

main()

Entry point for the CLABE CLI application.

Source code in src/clabe/cli.py
45
46
47
def main():
    """Entry point for the CLABE CLI application."""
    CliApp().run(CliAppSettings)