Created
March 12, 2014 08:18
-
-
Save dawehner/9502861 to your computer and use it in GitHub Desktop.
Auto-update ipython notebook cell
This file contains 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
var update = function() { | |
cell = IPython.notebook.get_cell(5);cell.execute(); | |
cell.focus_cell(); | |
}; | |
setInterval(update, 600000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment