The Notable Composition Notebook

It's a notebook!

This is an Electron app of the Jupyter notebook, being built at nteract/composition. The primary goals are:

  • Standalone distributable application for the notebook (in Electron!)
  • One click installers for OS X and Windows
  • Bundles a kernel with scientific Python packages
  • Integrates well with the current ecosystem of tooling
    • Should be able to detect other kernels
    • Comms should work (for ipywidgets)

In [11]:
import IPython

from IPython.display import HTML
from IPython.display import Markdown
from IPython.display import display

display(HTML("<h1>Multiple</h1>"))
display(HTML("<p>Display Elements</p>"))
display(Markdown('**awesome**'))

print('hey')
42


Multiple

Display Elements

awesome

hey
Out[11]:
42

In [3]:
! ls ..


LICENSE        app.js         main.css       node_modules   src
README.md      index.html     main.js        package.json   test-notebooks

In [4]:
thistextwillerror


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-4-11420afa3bbc> in <module>()
----> 1 thistextwillerror

NameError: name 'thistextwillerror' is not defined

In [7]:
from IPython.display import Image
Image(url='https://avatars2.githubusercontent.com/u/12401040?v=3&s=200')


Out[7]:

In [ ]: