5 from apscheduler.schedulers.blocking
import BlockingScheduler
7 from .timely_update
import send_update_to_students
8 from .timely_update
import update_database_daily
15 sched = BlockingScheduler()
16 sched.add_job(update_database_daily,
'interval', seconds=10)
17 sched.add_job(send_update_to_students,
'interval', seconds=200)