Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jupyter notebook schedule automatically

Tags:

python

jupyter

Does anybody knows how to schedule a jupyter notebook every hour or 30 minutes?

I tried to use seekwell (https://app.seekwell.io/) but it did not work for me.

Does anybody have another solution

thanks,

like image 898
Mariana Rodrigues Avatar asked Oct 28 '25 04:10

Mariana Rodrigues


1 Answers

According to the article 5 ways to schedule Jupyter Notebook there are several approaches to scheduling a notebook.

1. Cron

You can use cron scheduler if you are on UNIX machine. You define the frequency of the execution in the crontab. To execute notebook as script you can use nbconvert or papermill.

2. Windows Task Scheduler

Windows user can use Windows Task Scheduler with nbconvert or papermill.

3. Mercury

You can use the Mercury framework for scheduling. You need to add the YAML header in the notebook, below is the example:

title: My notebook
description: My notebook executed automatically
schedule: '0 * * * *'
notify:
    on_success: [email protected]
    attachment: pdf

What is more, you can set a list of emails that will receive the notebook in PDF format by email after successful execution. Here is a notebook scheduling documentation.

Below is an example of a notebook scheduled in the Mercury. You can see that there is a green box in the sidebar with information about scheduling. The notebook can also be easily accessed as a web app and downloaded as a PDF.

Scheduled notebook web app

You can read more about scheduling notebooks to make automated PDF reports and making dashboards in Python with automatic updates on the MLJAR blog.

4. Notebooker

The next open source framework for notebooks scheduling is Notebooker. It is a Flask based application for scheduling and sharing notebooks.

enter image description here

enter image description here

5. Web-based notebooks

There are several notebook in the cloud services that offer scheduling:

  • DeepNote
  • DataBricks
  • NaaS
  • Noteable
like image 94
pplonski Avatar answered Oct 30 '25 18:10

pplonski



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!