Skip to content

Instantly share code, notes, and snippets.

@Kakarot-2000
Created May 8, 2021 02:39
Show Gist options
  • Save Kakarot-2000/4e98ff7638337e38d51e0d87be31661c to your computer and use it in GitHub Desktop.
Save Kakarot-2000/4e98ff7638337e38d51e0d87be31661c to your computer and use it in GitHub Desktop.
from apscheduler.schedulers.blocking import BlockingScheduler
from run import sendMail
sched = BlockingScheduler()
@sched.scheduled_job('cron', day_of_week='mon-fri', hour=8)
def scheduled_job():
print('This job is run every weekday at 8 AM.')
sendMail()
sched.start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment