Python: A quick introduction to the concurrent.futures module

The concurrent.futures module is part of the standard library which provides a high level API for launching async tasks. We will discuss and go through code samples for the common usages of this module. Executors This module features the Executor class which is an abstract class and it can not be used directly. However it … Continue reading Python: A quick introduction to the concurrent.futures module