February 2022
Intermediate to advanced
376 pages
10h 54m
English
This chapter covers
In chapters 1 and 2, we introduced coroutines, tasks, and the event loop. We also examined how to run long operations concurrently and explored some of asyncio’s APIs that facilitate this. Up to this point however, we’ve only simulated long operations with the sleep function.
Since we’d like to build more than just demo applications, we’ll use some real-world blocking ...