summaryrefslogtreecommitdiff
path: root/examples/schedulers/blocking.py
blob: 55d13859c8ba5d9fbe5d6599b0b16a2e690ff1ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""
Demonstrates how to use the blocking scheduler to schedule a job that executes on 3 second intervals.
"""

from datetime import datetime

from apscheduler.schedulers.blocking import BlockingScheduler


def tick():
    print('Tick! The time is: %s' % datetime.now())


if __name__ == '__main__':
    scheduler = BlockingScheduler()
    scheduler.add_job(tick, 'interval', {'seconds': 3})
    print('Press Ctrl+C to exit')

    try:
        scheduler.start()
    except (KeyboardInterrupt, SystemExit):
        pass