gpt4 book ai didi

python - 如何在 docopt python 中仅为参数设置特定值?

转载 作者:太空宇宙 更新时间:2023-11-03 16:11:19 25 4
gpt4 key购买 nike

我正在尝试使用 docopt 来编写 python 代码。实际上我只需要为参数设置特定值。我的使用方法如下:

"""
Usage:
test.py --list=(all|available)

Options:
list Choice to list devices (all / available)
"""

我尝试将其运行为:python test.py --list=all,但它不接受该值,只显示 docopt string 。

我希望列表参数的值为“全部”或“可用”。有什么办法可以实现这一点吗?

最佳答案

这是实现您想要的目标的示例:

测试.py:

"""
Usage:
test.py list (all|available)

Options:
-h --help Show this screen.
--version Show version.

list Choice to list devices (all / available)
"""
from docopt import docopt

def list_devices(all_devices=True):
if all_devices:
print("Listing all devices...")
else:
print("Listing available devices...")


if __name__ == '__main__':
arguments = docopt(__doc__, version='test 1.0')

if arguments["list"]:
list_devices(arguments["all"])

使用此脚本,您可以运行如下语句:

python test.py list all

或者:

python test.py list available 

关于python - 如何在 docopt python 中仅为参数设置特定值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39286878/

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