argparse 模块如何添加不带任何参数的选项?
我使用 argparse 创建了一个脚本。
该脚本需要将配置文件名作为选项,用户可以指定是否需要完全执行该脚本或仅模拟它。
要传递的参数:./script -f config_file -s
或 ./script -f config_file
。
-f config_file 部分没问题,但它一直要求我提供 -s 的参数,这是可选的,后面不应跟任何参数。
我已经尝试过:
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
出现以下错误:
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'
并且与 ''
而不是 0
出现相同的错误。
I have created a script using argparse
.
The script needs to take a configuration file name as an option, and user can specify whether they need to proceed totally the script or only simulate it.
The args to be passed: ./script -f config_file -s
or ./script -f config_file
.
It's ok for the -f config_file part, but It keeps asking me for arguments for the -s which is optionnal and should not be followed by any.
I have tried this:
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
With the following errors:
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'
And same errror with ''
instead of 0
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 @Felix Kling 建议的,要创建不需要值的选项,请使用
action='store_true'
、'store_false'
或'store_const'
。请参阅文档。As @Felix Kling suggested, to create an option that needs no value, use
action='store_true'
,'store_false'
or'store_const'
. See documentation.要创建不需要值的选项,请设置
action
[docs] 到'store_const'
、'store_true'
或' store_false'
。例子:
To create an option that needs no value, set the
action
[docs] of it to'store_const'
,'store_true'
or'store_false'
.Example: