I'm trying to write a bat file so I can quickly launch into the Interactive Shell for one of my Django projects.
Basically I need to write a python script that can launch "manage.py shell" and then be able to print from mysite.myapp.models import *
The problem is manage.py shell cannot take additional arguments and launching into "manage.py shell" exits the parent script, so I am unable to then execute additional commands.