11

我在我的程序中将 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,但这只是隐藏了帮助输出中的所有子命令。

4

1 回答 1

17

我通过添加一个新的 HelpFormatter 来解决它,如果格式化一个 PARSER 操作,它只会删除该行:

class SubcommandHelpFormatter(argparse.RawDescriptionHelpFormatter):
    def _format_action(self, action):
        parts = super(argparse.RawDescriptionHelpFormatter, self)._format_action(action)
        if action.nargs == argparse.PARSER:
            parts = "\n".join(parts.split("\n")[1:])
        return parts
于 2012-11-17T09:21:55.383 回答