Skip to main content

Event scheduler 2

Project description

The sched2 module extends the general purpose event scheduler sched from Python's standard library. sched2.scheduler is a subclass of sched.scheduler that adds new features such as the every and cron decorators. It's a practical tool for automating tasks that need to run repeatedly after certain time delays or at specific times.

Install

sched2 is available on PyPI.

pip install sched2

Examples

The code below uses the every decorator to schedule checking the public IP address every two minutes. Then every day at 9:00, the cron decorator is used to send a report via email. Finally, the on decorator is used to send an email when the IP address changes.

from smtplib import SMTP_SSL
from urllib.request import urlopen

from sched2 import scheduler

# Create a scheduler
sc = scheduler()

# we'll use this to remember the last IP address between runs
last_ip = None


@sc.every(30)  # Run every two minutes
def print_ip_address():
    global last_ip

    ip = urlopen("https://icanhazip.com/").read().decode("utf-8").strip()

    print(f"Public IP address: {ip}")

    last_ip = last_ip or ip  # reset last_ip
    if ip != last_ip:
        last_ip = ip

        # Emit an event when the IP address changes
        sc.emit("ip_changed", kwargs={"new_ip": ip})


@sc.cron("0 9 * * 1-5")  # Run every weekday at 9:00
def send_report():
    sendmail("Daily Report", "The numbers are up!")


@sc.on("ip_changed")  # Run when 'ip_changed' event is emitted
def send_email(new_ip):
    sendmail("IP Address Changed", f"New IP address: {ip}")


def sendmail(subject, body):
    """Send an email using SMTP_SSL."""
    with SMTP_SSL("smtp.example.com") as smtp:
        smtp.login("me@example.com", "password")
        smtp.sendmail(
            "me@example.com",
            "team@example.com",
            f"{subject}\n\n{body}",
        )


# Run the scheduler
sc.run()

Source Code and Issues

The source code for sched2 is available on GitHub at github.com/medecau/sched2.

You can help improve sched2 by reporting any issues or suggestions on the issue tracker at github.com/medecau/sched2/issues.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sched2-0.8.2.tar.gz (7.3 kB view details)

Uploaded Source

Built Distribution

sched2-0.8.2-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file sched2-0.8.2.tar.gz.

File metadata

  • Download URL: sched2-0.8.2.tar.gz
  • Upload date:
  • Size: 7.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.2

File hashes

Hashes for sched2-0.8.2.tar.gz
Algorithm Hash digest
SHA256 425877bf8f4db49ed8a346ed696d417c9396f3771b48dd2cc9cae6ecca786d76
MD5 c11ea7cb75f8fe0499a108b2ff5560ce
BLAKE2b-256 081dedcae3de18197bd15f092575d06abb996c811336bd8ffb2cc4916888fb9b

See more details on using hashes here.

File details

Details for the file sched2-0.8.2-py3-none-any.whl.

File metadata

  • Download URL: sched2-0.8.2-py3-none-any.whl
  • Upload date:
  • Size: 5.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.2

File hashes

Hashes for sched2-0.8.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ce983336467d93fd0f333065f9cd08bb9976f44da58e6d589a2bdd23a9e15789
MD5 ead3a2307b16519acfc632455611db02
BLAKE2b-256 8b1e7ae1c34611cb4a52a84e884284981f63089db839a82237c78aad1d261d09

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page