__init__() 在 Python 2 中使用 argparse 得到了一个意外的关键字参数“必需”[重复]
Posted
技术标签:
【中文标题】__init__() 在 Python 2 中使用 argparse 得到了一个意外的关键字参数“必需”[重复]【英文标题】:__init__() got an unexpected keyword argument 'required' using argparse in Python 2 [duplicate] 【发布时间】:2021-04-13 19:38:27 【问题描述】:我有以下 python 脚本,如果我使用Python 2.7.16
版本运行,则会出现错误,但如果我使用Python 3
版本运行,则它可以正常工作。
下面是我的代码:
from argparse import ArgumentParser
def parse_cli_arguments():
parser = ArgumentParser(
description='some stuff'
)
parser.add_argument(
"-v",
"--verbose",
help="verbose output",
action="store_true"
)
subparser = parser.add_subparsers(
title="action",
dest='action',
required=True,
help='action sub-command help'
)
# create the subparser for the "push" command
parser_push = subparser.add_parser(
'push',
help='push help'
)
parser_push.add_argument(
'environment',
type=str,
help='push environment help'
)
parser_push.add_argument(
'instance',
type=str,
help='push instance help'
)
parser_push.add_argument(
'config',
type=str,
help='push config help'
)
# create the subparser for the "status" command
parser_status = subparser.add_parser(
'status',
help='status help'
)
parser_status.add_argument(
'environment',
type=str,
help='status environment help'
)
parser_status.add_argument(
'instance',
type=str,
help='status instance help'
)
return parser
def main():
parser = parse_cli_arguments()
args = parser.parse_args()
if args.action == 'push':
print('You chose push:', args.environment, args.instance, args.config)
elif args.action == 'status':
print('You chose status:', args.environment, args.instance)
else:
print('Something unexpected happened')
if __name__ == '__main__':
main()
问题陈述
以下是我在使用 Python 2.7.16 版本时遇到的错误。有什么想法我在这里做错了什么?
我需要在 Python 2.7.16 版本上运行我上面的代码。
❯ python test.py
Traceback (most recent call last):
File "test.py", line 70, in <module>
main()
File "test.py", line 59, in main
parser = parse_cli_arguments()
File "test.py", line 17, in parse_cli_arguments
help='action sub-command help'
File "/Users/andy/.pyenv/versions/2.7.16/lib/python2.7/argparse.py", line 1678, in add_subparsers
action = parsers_class(option_strings=[], **kwargs)
TypeError: __init__() got an unexpected keyword argument 'required'
我需要在此处更改一些语法以使其与 Python2 一起使用吗?
【问题讨论】:
subparsers
以前默认是required
,就像普通的positional
。 Py3 中的required
选项历史悠久。 ***.com/questions/22990977/…; ***.com/questions/23349349/…
【参考方案1】:
2.7 和 3 之间的 api 发生了变化。 sub_parsers
以前没有 required
关键字 arg。
Heres 2.7 中的函数签名。文档
ArgumentParser.add_subparsers([title][, description][, prog][, parser_class][, action][, option_string][, dest][, help][, metavar])
here 在 3.9 文档中
ArgumentParser.add_subparsers([title][, description][, prog][, parser_class][, action][, option_string][, dest][, required][, help][, metavar])
@hpaulj 建议了一种解决方法,其中涉及在add_subparsers
调用之后设置所需的属性。您可以在here 和here 找到答案(并留下任何赞)。
【讨论】:
以上是关于__init__() 在 Python 2 中使用 argparse 得到了一个意外的关键字参数“必需”[重复]的主要内容,如果未能解决你的问题,请参考以下文章