0
我想問如何製作一個「python manage.py shell」並添加一個「from myapp.model import Contact c = Contact.objects.all()。count()print C」。這可能在批處理文件中嗎?在批處理文件中使用腳本運行django shell
我想問如何製作一個「python manage.py shell」並添加一個「from myapp.model import Contact c = Contact.objects.all()。count()print C」。這可能在批處理文件中嗎?在批處理文件中使用腳本運行django shell
試着這麼做:
echo "from myapp.model import Contact; c = Contact.objects.all().count(); print c" | python manage.py shell
我試了一下,只顯示命令提示符,然後關閉。 – Nethan
謝謝你。這真的幫助了我。謝謝。 – Nethan