I am looking for an event scheduler like quartz in java for my python project .
Please suggest me some good scheduler in Python
My Requirements
1) Send an email or sms to the user after some interval
Thanks !
Maybe APScheduler is you want.
This is the example:
from apscheduler.scheduler import Scheduler
sched = Scheduler()
@sched.interval_schedule(hours=3)
def some_job():
print "Decorated job"
sched.configure(options_from_ini_file)
sched.start()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With