22 """Accessor for sphinx documentation generator that accesses the butler
23 subcommand plugins that are provided by this package."""
34 """List the click commands provided by this package.
39 The current Click context.
43 commands : `list` [`str`]
44 The names of the commands that can be called by the butler command.
49 """Get a click command provided by this package.
54 The current Click context.
56 The name of the command to return.
60 command : click.Command
61 A Command that wraps a callable command function.
63 return doImport(
"lsst.obs.base.cli.cmd." + name)
66 @click.command(cls=ButlerCmdDocGen)
def list_commands(self, ctx)
def get_command(self, context, name)