我正在尝试学习如何使用 Python-click。我无法将帮助参数与我的一个选项一起使用,所以我最终放弃并更改了代码以不包含该选项的帮助。然而,尽管关闭并重新启动 Python 并且现在重新启动我的计算机,与尝试使用帮助参数相关的错误消息仍然出现。
代码:
import click
def something():
pass
@click.command()
@click.argument('dest_dir',type=click.Path(exists=True, readable=True,
resolve_path=True, dir_okay=True),
help='Location of directory where results will be saved')
@click.option('--use_terms', is_flag=True,
help='Process strings based on terms or phrases')
@click.option('--use_query', is_flag=True, help='Process string based on
search query')
@click.option('--search_phrase', '-s', multiple=True)
def do_process(dest_dir,use_terms,use_query,*search_phrase):
""" testing setting parameters for snip tables"""
outref = open('e:\\myTemp\\testq.txt')
ms = dest_dir + '\n'
if use_terms:
ms += use_term + '\n'
else:
ms += use_query + '\n'
for each in search_phrase:
x = something()
ms += each + '\n'
outref.writelines(ms)
outref.close()
if __name__ == "__main__":
do_process()
最初用于我拥有的最后一个 @click.option
@click.option('--search_phrase', '-s', multiple=True, help='The search phrase to use')
我不断收到一条错误消息,我无法解决与未知参数帮助有关的问题。我放弃了它,改为上面的内容,现在我遇到了类似的错误,
然后我关闭了 Python,我关闭了我的模块,然后重新启动 Python 打开并再次运行我的代码,但仍然收到此错误消息
追溯:
Traceback (most recent call last):
File "C:\Program Files\PYTHON\snipTables\test_snip_click.py", line 14, in <module>
@click.option('--search_phrase', '-s', multiple=True)
File "C:\Program Files\PYTHON\lib\site-packages\click\decorators.py", line 148, in decorator
_param_memo(f, ArgumentClass(param_decls, **attrs))
File "C:\Program Files\PYTHON\lib\site-packages\click\core.py", line 1618, in __init__
Parameter.__init__(self, param_decls, required=required, **attrs)
TypeError: __init__() got an unexpected keyword argument 'help'
所以然后我关闭了 Python Idle,我保存并关闭了我的代码,然后重新启动了 Python,重新打开了我的代码,但我仍然得到相同的回溯,除了注意到回溯有我在猛烈撞击后切换到的代码行监视器和放弃
我正准备重新启动,但对原因非常好奇。
我重新启动,但仍然收到相同的错误
重命名文件并再次运行并没有改变结果 - 相同的回溯