less than 1 minute read

concurrent.futures

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

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

Leave a comment