Last Updated: February 25, 2016
·
2.024K
· dawehner

Auto-update ipython notebook cell

var update = function() {
  cell = IPython.notebook.get_cell(5);cell.execute();
  cell.focus_cell();
};
setInterval(update, 600000);