使用脚本在批处理文件中运行django shell

时间:2014-03-26 01:50:56

标签: python django django-shell

我想问一下如何制作一个" python manage.py shell"并从myapp.model import添加一个"联系人c = Contact.objects.all()。count()print c"。这可能在批处理文件中吗?

1 个答案:

答案 0 :(得分:1)

尝试类似:

echo "from myapp.model import Contact; c = Contact.objects.all().count(); print c" | python manage.py shell

How do you read from stdin in Python?