____my__program____.py --help '''.lstrip() SUB_DOCSTRINGS = dict( ____my__command____=''' ____my__command____: ____my__command____description > ____my__program____.py ____my__command____ flags: --____my__flag____: '''.strip(), ) DOCSTRING = betterhelp.add_previews(DOCSTRING, SUB_DOCSTRINGS) @betterhelp.subparser_betterhelp(parser, main_docstring=DOCSTRING, sub_docstrings=SUB_DOCSTRINGS) def main(argv): args = parser.parse_args(argv) args.func(args) ]]> helptext