我在我的程序中将 Python argparse 模块用于命令行子命令。我的代码基本上是这样的:
import argparse
parser = argparse.ArgumentParser()
subparsers = parser.add_subparsers(title="subcommands", metavar="<command>")
subparser = subparsers.add_parser("this", help="do this")
subparser = subparsers.add_parser("that", help="do that")
parser.parse_args()
运行“python test.py --help”时,我想列出可用的子命令。目前我得到这个输出:
usage: test.py [-h] <command> ...
optional arguments:
-h, --help show this help message and exit
subcommands:
<command>
this do this
that do that
我可以以某种方式删除<command>
子命令列表中的行并仍将其保留在使用行中吗?我试图将 help=argparse.SUPPRESS 作为参数提供给 add_subparsers,但这只是隐藏了帮助输出中的所有子命令。