Skip to content

Instantly share code, notes, and snippets.

@dawehner
Created March 12, 2014 08:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dawehner/9502861 to your computer and use it in GitHub Desktop.
Save dawehner/9502861 to your computer and use it in GitHub Desktop.
Auto-update ipython notebook cell
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