Concurrent Burgers — Understand async / await
This article lives in:
- Dev.to
- Medium
- GitHub
- FastAPI’s docs (including translations to other languages)
Intro
Modern versions of Python (and other languages) have support for “asynchronous code” using something called “coroutines”, with async
and await
syntax.
Here’s a friendly and not very technical explanation to give some intuition about all that, including asynchronous code, concurrency, and…