Top "Python-multithreading" questions

python-multithreading refers to how to divide work into multiple streams of execution in Python.

Python Threads Hang

I have a simple threaded Python program following the standard paradigm: class SearchThread(threading.Thread): def __init__(self, search_queue): …

python multithreading multiprocessing python-multithreading
Is the max thread limit actually a non-relevant issue for Python / Linux?

The current Python application that I'm working on has a need to utilize 1000+ threads (Pythons threading module). Not that any …

python multithreading thread-safety threadpool python-multithreading
Understanding thread.join(timeout)

So the timeout param, for a thread, should stop the thread after timeout seconds (if it hasn't terminated yet). In …

python multithreading python-multithreading
Pyqt5 qthread + signal not working + gui freeze

I am trying to make a mailbox checker with imap lib, it work pretty fine with python, queue and multithread …

python pyqt pyqt5 python-multithreading
Opening a Python thread in a new console window

I am trying to make a program that will launch both a view window (console) and a command line. In …

python windows linux multithreading python-multithreading
Why coroutines cannot be used with run_in_executor?

I want to run a service that requests urls using coroutines and multithread. However I cannot pass coroutines to the …

python-3.x async-await python-multithreading python-asyncio
How to stop daemon thread?

I have a simple producer consumer application. The producer is a thread that writes stuff to a queue and a …

python multithreading python-3.x python-multithreading
What is a "worker" in Odoo?

What is the purpose of workers? Are these workers for multi-threading or something else? When the Odoo instance start I …

multithreading odoo odoo-8 python-multithreading worker
How to find running time of a thread in Python

I have a multi-threaded SMTP server. Each thread takes care of one client. I need to set a timeout value …

python timer python-2.7 python-multithreading
Python threading error - must be an iterable, not int

I'm trying to calculate rolling r-squared of regression among first column and other columns in a dataframe (first column and …

python multithreading regression python-multithreading iterable