gpt4 book ai didi

python - 为什么默认值没有出现在我的 docopt 命令行参数字典中?

转载 作者:太空狗 更新时间:2023-10-30 00:36:44 26 4
gpt4 key购买 nike

我一直在尝试使用 docopt 来制作一个简单的 CLI,但由于某些原因,我的默认参数没有出现。下面是我的测试代码。我正在使用来自 github 存储库的最新版本的 docopt.py

"""
Usage: scrappy <path> ... [options]

-a --auto Automatically scrape and rename without user interaction.
-l --lang Specify language code [default: en].
--scan-individual Evaluate series information individually for each file.
-c --cfg User alternate config file [default: ../scrappy.conf]
-t --test Test run. Do not modify files.
-v --verbose Print verbose output
"""

from docopt import docopt
arguments = docopt(__doc__, version='0.1.0 alpha')
print arguments # DEBUG

这是我运行 $ scrappy/scrappy.py first_path_parameter second/path/parameter 时的输出

{'--auto': None,
'--cfg': None,
'--lang': None,
'--scan-individual': None,
'--test': None,
'--verbose': None,
'<path>': ['first_path_parameter', 'second/path/parameter']}

有人知道这是怎么回事吗?

编辑:

我更新了我的代码,但我仍然得到类似的输出。更重要的是,当我尝试传递 --scan-individual 时,我收到一个错误,据此它需要一个参数。同样,以防万一,我运行 docopt 只是将 docopt.py 复制到我项目的工作目录中。这是怎么回事?

#!/usr/bin/env python

"""Scrappy: Rename media files based on scraped information.

Usage: scrappy <path> ... [options]

-a --auto Automatically scrape and rename without user interaction.
-l LANG --lang LANG Specify language code [default: en].
--scan-individual Evaluate series information individually for each file.
-c CONF --cfg CONF User alternate config file [default: ../scrappy.conf]
-t --test Test run. Do not modify files.
-v --verbose Print verbose output
"""

from docopt import docopt
arguments = docopt(__doc__, version='0.1.0 alpha')
print arguments # DEBUG

输出:

$ scrappy/scrappy.py first_path_parameter second/path/parameter --scan-individual
--scan-individual requires argument
Usage: scrappy <path> ... [options]

最佳答案

通过查看示例,似乎如果您想传递一个默认值,您可能必须指定一个目标变量,例如

naval_fate.py:  --speed=<kn>  Speed in knots [default: 10].
options_example.py- --exclude=PATTERNS exclude files or directories which match these comma
options_example.py: separated patterns [default: .svn,CVS,.bzr,.hg,.git]
options_example.py- -f NAME --file=NAME when parsing directories, only check filenames matching
options_example.py: these comma separated patterns [default: *.py]

所以在你的情况下,

-l LANG --lang LANG  Specify language code [default: en].
-c CONFIG User alternate config file [default: ../scrappy.conf]

产生

localhost-2:coding $ python doc.py --auto a b c
{'--auto': True,
'--lang': 'en',
'--scan-individual': False,
'--test': False,
'--verbose': False,
'-c': '../scrappy.conf',
'<path>': ['a', 'b', 'c']}

编辑:OP 发布的更新代码对我来说工作得很好,我半小时前下载了 github 版本:

localhost-2:coding $ ./scrappy.py first_path_parameter second/path/parameter --scan-individual
{'--auto': False,
'--cfg': '../scrappy.conf',
'--lang': 'en',
'--scan-individual': True,
'--test': False,
'--verbose': False,
'<path>': ['first_path_parameter', 'second/path/parameter']}

所以我很茫然。

关于python - 为什么默认值没有出现在我的 docopt 命令行参数字典中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13995352/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com