引数をpython argparse.ArgumentParser
]に追加することは、使用法やヘルプに表示せずに可能ですか(script.py --help
)?
はい、help
オプションをadd_argument
からargparse.SUPPRESS
に設定できます。 argparse documentation の例を次に示します。
>>> parser = argparse.ArgumentParser(prog='frobble')
>>> parser.add_argument('--foo', help=argparse.SUPPRESS)
>>> parser.print_help()
usage: frobble [-h]
optional arguments:
-h, --help show this help message and exit