argparse module How to add option without any argument?
我用
该脚本需要将配置文件名作为选项,用户可以指定是否需要完全继续该脚本,或者只模拟该脚本。
要传递的参数:
对于-f config_文件部分是可以的,但是它一直在向我询问-s的参数,这些参数是可选的,不应该后跟任何参数。
我尝试过:
1 2 3 4 5 6 7 8 9 10 | parser = argparse.ArgumentParser() parser.add_argument('-f', '--file') #parser.add_argument('-s', '--simulate', nargs = '0') args = parser.parse_args() if args.file: config_file = args.file if args.set_in_prod: simulate = True else: pass |
出现以下错误:
1 2 3 | File"/usr/local/lib/python2.6/dist-packages/argparse.py", line 2169, in _get_nargs_pattern nargs_pattern = '(-*%s-*)' % '-*'.join('A' * nargs) TypeError: can't multiply sequence by non-int of type 'str' |
与
如@felix kling建议使用
1 2 3 4 5 6 7 8 9 | >>> from argparse import ArgumentParser >>> p = ArgumentParser() >>> _ = p.add_argument('-f', '--foo', action='store_true') >>> args = p.parse_args() >>> args.foo False >>> args = p.parse_args(['-f']) >>> args.foo True |
要创建不需要值的选项,请将它的
例子:
1 | parser.add_argument('-s', '--simulate', action='store_true') |