Python coroutines in detail -- understand the magical await keyword and how it manages to transform callback hell into coroutine bliss.
If you have ever wondered what await actually does, explained in terms of ordinary code, this talk is for you.
I’ll introduce coroutines in async programming and briefly compare them to callbacks and promises, showing examples of their use in asyncio alongside equivalent blocking code. Then I’ll use these examples to delve further into the seemingly magical await keyword and the programming model it brings about. After the talk you should be able to understand what await X expands to, how a coroutine could be desugared into an ordinary function, and why you’re happy you don’t have to do it yourself.