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

2018-04-10 Thread Thomas Kluyver
+1 good figuring out! On 10 April 2018 at 20:22, wrote: > 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 n

[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