asyncio - Asynchronous I/O, event loop, coroutines and tasks, Python Core Developers, 2024 (Python Software Foundation) - Explains the fundamental mechanisms of asynchronous programming in Python, covering the event loop, coroutines, and how async/await manage I/O waits.
Concurrency and async/await, Sebastián RamÃrez, 2024 - Details how FastAPI leverages Python's asynchronous features to efficiently handle I/O-bound operations and improve application performance, also addressing CPU-bound tasks.
Python Concurrency with asyncio, Matthew Fowler, 2022 (Manning Publications) - Offers a comprehensive guide to building concurrent applications using Python's asyncio library, with clear explanations of event loops, coroutines, and managing I/O.