gpt4 book ai didi

python - 如何从 Django shell 执行 Python 脚本?

转载 作者:IT老高 更新时间:2023-10-28 12:14:38 24 4
gpt4 key购买 nike

我需要从 Django shell 执行 Python 脚本。我试过了:

./manage.py shell << my_script.py

但它没有用。就是在等我写点什么。

最佳答案

<<部分错误,使用 <而是:

$ ./manage.py shell < myscript.py

你也可以这样做:

$ ./manage.py shell
...
>>> execfile('myscript.py')

对于python3,您需要使用

>>> exec(open('myscript.py').read())

关于python - 如何从 Django shell 执行 Python 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16853649/

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