#!/usr/bin/env python # coding: utf-8 # ## The Notable Nteract Notebook # # ![comp](https://assets-cdn.github.com/images/icons/emoji/unicode/1f4d3.png) # # **It's a notebook!** # # This is a standalone notebook for interacting with the REPL of your choice, being built at [nteract/nteract](https://github.com/nteract/nteract). The primary goals are: # # * Standalone distributable application for the notebook (in Electron!) # * One click installers for macOS 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[1]: import IPython from IPython.display import HTML from IPython.display import Markdown from IPython.display import display display(HTML("

Multiple

")) display(HTML("

Display Elements

")) display(Markdown('**awesome**')) print('hey') 42 # In[2]: get_ipython().system(' ls ..') # In[3]: thistextwillerror # In[7]: from IPython.display import Image Image(url='https://avatars2.githubusercontent.com/u/12401040?v=3&s=200') # In[ ]: