1👍
✅
I opened up an issue on IPython dev’s github. Minrk found this solution:
import subprocess
server = subprocess.Popen(["python", "manage.py", "runserver"])
it allows me to view the dev server and continue to develop it in the IPython Notebook. sweet!
Source:stackexchange.com