Embed JS9 (the javascript version of DS9 (the astronomical image viewer)) inside Jupyter.
note For now this project doens't do much, I still need to figure out what is the best way to actually integrate JS9 into ipython. For the meanwhile you can already use JS9 in your notebook by copy pasting this code into a cell:
%%html
<div class="JS9Menubar"></div>
<div class="JS9"></div>
<link type="text/css" rel="stylesheet" href="http://js9.si.edu/js9/js9-allinone.css">
<script type="text/javascript" src="http://js9.si.edu/js9/js9-allinone.js"></script>
From source:
$ python setup.py install
Or with pip:
$ pip install js9notebook
import js9notebook
js9notebook.initialize()
https://github.com/gijzelaerr/js9notebook/tree/master/example
MIT