Skip to content

A simple API to schedule recurring jobs using Python's sched module

License

Notifications You must be signed in to change notification settings

manorom/recurring_sched

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

recurring_sched

Simple scheduling of recurring jobs in Python: Providing a simple, human readable syntax for recurring jobs and Python's sched module.

Heavily inspired by (the much more feature complete) scheduler.

Usage

$ pip install recurring_sched
from recurring_sched import RecurringScheduler
def job(message="General Kenobi"):
    print("Hello There: ", message)

schedule.every(10).minutes.do(job)
schedule.every(1).hours.at("30:00").do(job, messages="General Skywalker")
schedule.run()

About

A simple API to schedule recurring jobs using Python's sched module

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages