Multithreading in Python

A detailed guide on handling multithreading in Python using the `threading` and `concurrent.futures` libraries. This article helps you understand how to use multithreading to improve concurrent processing efficiency.

In this article, we will explore how to handle multithreading in Python to enhance the performance of programs with concurrent tasks. We will use the threading and concurrent.futures libraries to implement illustrative examples.

Python code

1. Using the threading library

import threading
import time

def print_numbers():
    for i in range(1, 6):
        print(f"Number: {i}")
        time.sleep(1)

def print_letters():
    for letter in ['A', 'B', 'C', 'D', 'E']:
        print(f"Letter: {letter}")
        time.sleep(1)

# Create two threads
thread1 = threading.Thread(target=print_numbers)
thread2 = threading.Thread(target=print_letters)

# Start the threads
thread1.start()
thread2.start()

# Wait for both threads to complete
thread1.join()
thread2.join()

print("Multithreading complete")

2. Using the concurrent.futures library

import concurrent.futures
import time

def process_task(task_name, duration):
    print(f"Starting {task_name}")
    time.sleep(duration)
    return f"Completed {task_name}"

with concurrent.futures.ThreadPoolExecutor(max_workers=2) as executor:
    futures = [executor.submit(process_task, f"Task {i+1}", 2) for i in range(2)]
    
    for future in concurrent.futures.as_completed(futures):
        print(future.result())

print("Multithreading complete")

Detailed explanation

Code 1 - threading:

  • threading.Thread(target=...): Creates a new thread that executes the specified function.
  • start(): Begins execution of the thread.
  • join(): Waits for the thread to complete before continuing with the next code segment.

Code 2 - concurrent.futures:

  • ThreadPoolExecutor(max_workers=2): Creates a Thread Pool with 2 threads.
  • executor.submit(...): Submits a task to the Thread Pool for processing.
  • concurrent.futures.as_completed(futures): Iterates over tasks that have been completed.

System Requirements:

  • Python 3.6 or later

How to install the libraries needed to run the Python code above:

Both threading and concurrent.futures are standard libraries and do not require additional installation.

Tips:

  • Multithreading is useful for I/O-bound tasks but may not be effective for CPU-bound tasks due to the Global Interpreter Lock (GIL).
  • Use concurrent.futures for more complex multithreading situations to maintain more readable and maintainable code.


Related

Guide to Creating a Python Application Interface with PyQT6

A detailed guide on how to create a simple application interface using PyQT6 in Python, with installation steps and code explanations.
How to GET JSON data from API using Python

This article will guide you on how to use Python to send a GET request to an API and receive JSON data. You will learn how to work with necessary libraries and handle the data.
Comprehensive Guide to Using the print() Function in Python

A detailed guide on all the ways to use the print() function in Python, covering formatting options, parameters, and advanced usage.
How to rename columns in Pandas using a list in Python

A guide on how to rename columns in a Pandas DataFrame using a list of new names. This makes it easy to update or change column names when working with data in Python.
How to INSERT data into a MySQL database using Python

A guide on how to insert data into a MySQL database table using Python and the mysql-connector-python library.
Send Authentication Header Token when POSTing data to API using Python

A guide on how to send a POST request to an API with an Authentication Header Token using Python. This method is commonly used for authentication and security in API communication.
How to Post Data to API Using Python

This article guides you on how to send data to an API using the POST method in Python with the requests library, helping you better understand how to interact with web services.
How to open Notepad application using Python

This article explains how to use Python to open the Notepad application on Windows. This method is helpful when automating application launching tasks through Python code.
Creating video from images using OpenCV

A detailed guide on how to create a video from images using Python and the OpenCV library. The article includes source code and line-by-line explanations.
How to DELETE data from a MySQL database using Python

A guide on how to use Prepared Statements in Python to delete data from a table in a MySQL database safely and effectively.

main.add_cart_success