我正在编写一个shell脚本,它使用-c选项通过ipython运行命令,如下所示:
ipython -c "from blah import myfunct; myfunct()"
但我想通过django的shell_plus命令调用ipython,这样我就可以利用shell_plus为我自动加载的所有东西:
$ ./manage.py shell_plus
我不能只是添加“-c ...”到底,因为manage.py不知道如何处理它。是否有办法以某种方式管道-c选项?
答案 0 :(得分:2)
有几种方法可以做到这一点。
'PYTHONSTARTUP=your_file ./manage.py shell_plus'