gpt4 book ai didi

python - option does not take a value 错误

转载 作者:行者123 更新时间:2023-11-28 16:41:25 25 4
gpt4 key购买 nike

我有这个 Command(BaseCommand) 类,定义如下:

make_option('--username', action='store_true', dest='username', default=None),

然后我尝试像这样运行它:

python manage.py thescript --username=something

输出是:

manage.py: error: --username option does not take a value

为什么?


编辑

我总是得到 None:

class Command(BaseCommand):
args = '--username=username ...'
help = '...'

option_list = BaseCommand.option_list + (
make_option('--username', action='store', default=None, help='...'),
)

def handle(self, *args, **options):
print options['username']

最佳答案

store_true 行将导致命令存储 bool 值 True 如果给出参数 --username,而不是存储下一个值。

我怀疑按照 action='store' 的方式做一些事情会达到你的预期。

我认为您目前正在使用 optparse,对吗?如果是这样,您可以在 optparse documentation 中找到可用的不同类型操作的完整列表。 .

关于python - option does not take a value 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18841171/

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