Python - Concurrent

Python has 2 builtin concurrent utilities which is widely utilized, i.e., process pool and thread pool, dedicated to CPU intensity and I/O intensity respectively.

A simple example can be found below.

from concurrent.futures import ProcessPoolExecutor, ThreadPoolExecutor, as_completed

# Create a process pool with 4 workers.
pool = ProcessPoolExecutor(4)
# Create a thread pool with 4 workers.
pool = ThreadPoolExecutor(4)

# Submit tasks to the pool.
futures = [pool.submit(FUNCTION, ARG) for ARG in ARGS]

# Get the results.
for f in as_completed(futures):
    f.result()