Is there a way to start a new Jupyter Notebook on an existing Jupyter server programmatically?

313 views Asked by At

Use case: I'd like to automatically schedule the execution of certain notebooks weekly. These are notebooks that take a long time to run, and I'd like to be able to continue running if it errors from when it left off, after changing the cause of the error. It would also be useful to just inspect the run from the browser when I need it.

So what I'm looking for is to start a notebook (and start the execution of all cells) on a running server (eg. on port 8888), with either Python code or using the CLI - without using a browser.

Is there any way to achieve this?

0

There are 0 answers