This repository collects tiny, focused scripts I wrote while learning how Python's asyncio machinery fits together. Each numbered file is a self-contained example that adds one new idea on top of the ...
Async functions require an event loop to run. Flask, as a WSGI application, uses one worker to handle one request/response cycle. When a request comes in to an async view, Flask will start an event ...