blob: 8fd4e2d55ba6c5a71fea9845f806a544e21b2124 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
"""
Example demonstrating use of the asynchronous scheduler in a simple asyncio app.
To run: python async_memory.py
It should print a line on the console on a one-second interval.
"""
from __future__ import annotations
from asyncio import run
from datetime import datetime
from apscheduler.schedulers.async_ import AsyncScheduler
from apscheduler.triggers.interval import IntervalTrigger
def tick():
print("Hello, the time is", datetime.now())
async def main():
async with AsyncScheduler() as scheduler:
await scheduler.add_schedule(tick, IntervalTrigger(seconds=1))
await scheduler.run_until_stopped()
run(main())
|