
Parallel Processing in Python with concurrent.futures
·3 mins
Hello đź‘‹,
In this short article I want to talk about parallel processing in Python.
Introduction
#
Sometimes you will need to process certain things in parallel. If you’re using Python you may know about the global interpreter lock abbreviated GIL for short. The GIL is a lock that allows only a single thread to control the Python Interpreter at a time (per process), that means that your multi-threaded Python program will have only a single thread executing code at the same time.



