[jupyter] Re: Run a tornado shell for easier development

2018-04-10 Thread hello
Nevermind, I figured it out. If anyone wants to run this in future. I created shell.py with following: #!/usr/bin/env python import os import readline from pprint import pprint from notebook import * from notebook.notebookapp import NotebookApp os.environ['PYTHONINSPECT'] = 'True' Then r

[jupyter] Run a tornado shell for easier development

2018-04-10 Thread hello
Hey, I am new to Jupyter development. I was wondering if there is a way to run a shell (similar to Django) that has Jupyter application initialised. So far I have tried this . That gives me access to all classes b