On Thu, Oct 24, 2013 at 6:36 AM, Jason Grout <jason-sage@creativetrax.com> wrote:
On 10/24/13 6:35 AM, Jason Grout wrote:
> This looks really cool.  I was checking out how easy it would be to
> embed in the Sage Cell Server [1].  I briefly looked at the code, and it
> appears that the IPython notebook mode does not use nodejs, redis,
> gevent, etc.?  Is that right?

Or maybe the better way to phrase it is: what are the absolute minimum
dependencies if all I want to do is to display in the IPython notebook?

You actually should not need nodejs, redis, and gevent if you just want to embed the full source code of bokeh.js into the IPython notebook itself.  Also, the data will be baked into the DOM as javascript variables.

You will still have interactivity *within* plots inside a single Notebook, but they will not drive events back to the server side.  Also, if your data is large, then the notebook will also get pretty big.  (We will be working on more efficient encodings in a future release.)

-Peter