asyncio is Python's framework for concurrent I/O using async/await. It runs many I/O operations cooperatively on a single thread via an event loop — efficient for high-concurrency I/O-bound work (network calls, web servers) without the overhead of threads.
