Created
May 4, 2021 09:47
-
-
Save Kakarot-2000/655f5c8355a373e106fc9f7f143165d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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