Last active
March 1, 2016 05:09
-
-
Save kylekyle/88e72112f87f1d4df95a to your computer and use it in GitHub Desktop.
How to communicate with a Jupyter kernel directly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jupyter.notebook.kernel.execute("puts 'hello world'", { | |
iopub : { | |
output : function(response) { | |
console.log(response); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment