Blog Posts by Date | tag: 'concurrency'


Concurrent Python programming with async, threading, and multiprocessing


February 07, 2024 / 48 min read / 3,361 views, 1 likes, 4 comments


Concurrent python text with a rocketship

One of the best ways to achieve significant speed improvements in Python code is through concurrency: doing several tasks simultaneously. In this article, I describe concurrency in Python and give some examples of running Python code concurrently with “async” functions, “threading,” and “multiprocessing.”

Read more...