本文介绍了如何从ArgumentParser对象中获取可用标志?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在为这个python项目使用argparse
模块.我希望在调用parse_args()
之前从ArgumentParser
对象中获取可用的标志.有人有什么想法吗?
I'm using the argparse
module for this python project. I'm looking to get the available flags out of an ArgumentParser
object before calling parse_args()
. Anyone have any ideas?
推荐答案
从add_argument()的源代码获得这一点:
Got this from the source code of add_argument():
>>> import argparse
>>> parser = argparse.ArgumentParser()
>>> parser.add_argument('-v', '--verbosity', help='more debug info', action='store_true')
_StoreTrueAction(option_strings=['-v', '--verbosity'], dest='verbosity', nargs=0, const=True, default=False, type=None, choices=None, help='more debug info', metavar=None)
>>> parser._option_string_actions.keys()
['-v', '-h', '--verbosity', '--help']
>>>
这篇关于如何从ArgumentParser对象中获取可用标志?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!