本文介绍了在Django RunScript中传递命令行参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以使用django runscript将命令行参数传递给脚本?我尝试运行的脚本使用argparse接受命令行参数.

Is there a way to pass command line arguments to a script using django runscript ?The script I am trying to run uses argparse to accept command line arguments.

脚本的命令行执行:

./consumer --arg1 arg1 --arg2 arg2

arg1arg2均为必需选项.

我们尝试使用script-args,但无法弄清楚如何在这种情况下使用它.

We tried using script-args but unable to figure out how to use it in this context.

推荐答案

2020年更新:使用--script-args

Update in 2020: use --script-args

https://django-extensions.readthedocs.io/en/latest/runscript.html

这篇关于在Django RunScript中传递命令行参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 15:34