set scheduler

This commit is contained in:
2022-04-05 09:25:49 +02:00
parent 62e1dd1106
commit ba5aed39c6
4 changed files with 17 additions and 11 deletions
+10 -5
View File
@@ -1,10 +1,7 @@
import logging
import sys
from apscheduler.executors.pool import ThreadPoolExecutor, ProcessPoolExecutor
from apscheduler.schedulers.blocking import BlockingScheduler
from logs.AppLogging import init_logger
from main import start_book
from wait_for_sms import start_waiting_sms
@@ -12,7 +9,15 @@ def waiting_for_sms_job():
start_waiting_sms()
def start_book_appointment():
start_book()
def start_waiting_sms_job(sched):
sched.add_job(start_book_appointment, 'cron', day_of_week='mon-sat', hour='10',
minute='30',
misfire_grace_time=10,
second='0', timezone='Europe/Paris', max_instances=1)
sched.add_job(waiting_for_sms_job, 'cron', day_of_week='mon-sat', hour='20',
minute='30',
misfire_grace_time=10,
@@ -31,4 +36,4 @@ def config_and_start_jobs():
if __name__ == '__main__':
config_and_start_jobs()
config_and_start_jobs()