Skip to content

Python Asyncio Study notes#

concurrent.futures#

The concurrent.futures is a high-level abstraction for the threading and multiprocessing modules.

mermaid! graph LR concurrent.futures --->| on top of | threading concurrent.futures --->| on top of | multiprocessing threading --->| on top of | \_thread click concurrent.futures "https://docs.python.org/3.9/library/concurrent.futures.html" _blank

Comments