forked from realpython/materials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_4.py
More file actions
35 lines (27 loc) · 837 Bytes
/
Copy pathexample_4.py
File metadata and controls
35 lines (27 loc) · 837 Bytes
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
29
30
31
32
33
34
35
import asyncio
from lib.elapsed_time import ET
async def task(name, work_queue):
while not work_queue.empty():
delay = await work_queue.get()
et = ET()
print(f"Task {name} running")
await asyncio.sleep(delay)
print(f"Task {name} total elapsed time: {et():.1f}")
async def main():
"""
This is the main entry point for the program
"""
# Create the queue of 'work'
work_queue = asyncio.Queue()
# Put some 'work' in the queue
for work in [15, 10, 5, 2]:
await work_queue.put(work)
# Run the tasks
et = ET()
await asyncio.gather(
asyncio.create_task(task("One", work_queue)),
asyncio.create_task(task("Two", work_queue)),
)
print(f"\nTotal elapsed time: {et():.1f}")
if __name__ == "__main__":
asyncio.run(main())