Python Concurrency: Threads, Processes, and asyncio Explained
Jan 2025 Intro
I recently needed to learn Python concurrency. I always thought I’d get to that topic someday. That someday arrived.
The best resource I’ve found is David Beazley’s Python Concurrency From the Ground Up: LIVE!. Not only does he do live coding without mistakes, but he explains it very intuitively. This post is a summary of his talk, plus a section on asyncio (wasn’t released at the time).
The goal is to understand the differences between threads, processes, and asyncio.
To u...
Read more at newvick.com