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

learn more… | top users | synonyms

0
votes
1answer
23 views

Python: CherryPy and Win32 API in multithreading?

In order to add more tools to my Python arsenal, I've started work on a pet project - a personal time management app, Thyme. Currently, the app consists of two processes: Every 500ms, a separate ...
0
votes
1answer
30 views

Threading error when the return function is invoked

I'm very new to threading, like an hour now, but I needed it for my code. I learned enough to use threads effectively in my situation but I'm stumped on how to get the return output from my function. ...
2
votes
1answer
27 views

How can I get the name of the thread by knowing the thread id?

I am working on a multithread traceback script, I am using the following code sample to retrieve the name of the thread, is there a nicer way to get the name of the thread out of the thread id? for ...
1
vote
0answers
79 views

bottle gevent and threading: gevent is only usable from a single thread

I have a python bottle application, which uses threads. due to the fact i'm using monkey.patch (http://www.gevent.org/gevent.monkey.html), the threads were blocking app execution (a dialog box fired ...
1
vote
1answer
14 views

How to count the threads and process of WSGI?

I have deployed a wsgi application on the apache and I have configured it like this: WSGIDaemonProcess wsgi-pcapi user= group= processes=2 threads=15 After I restart the apache I am counting the ...
5
votes
1answer
61 views

better solution for setting max threads to hold main thread?

I have a web server that is connecting to one of many serverlets. The web server might queue up to 40 jobs that can take 20 mins or 30 hours to run each. The web server connects to a serverlet using ...
0
votes
1answer
40 views

Python:Multi-thread not works as epected

I want to start a project to learn python, and I chose to write a simple web proxy. In some case, some thread seems get a null request, and python rasie exception: first_line: GET ...
0
votes
0answers
18 views

How can I implement QThread into my python code

I have looked up the references and can not seem to get it to work correctly. Have been stuck in the same spot for 2 weeks. I would like to add threading to my code so I can dynamically update a ...
2
votes
1answer
54 views

If `threading` module doesn't really let multiple threads run at once due to GIL, why is ParallelPython using all my cores?

AFAIK, the threading.Thread instances can't actually run in parallell, due to the Global Interpreter Lock, which forces only one thread to be able to run at any time (except for when blocking on I/O ...
0
votes
2answers
51 views

Exiting a thread in python?

I have a program that pulls "work" from a database then dispatches it to workers. I have a thread dedicated to doing some work in a loop. The work it does comes from a database, and the call to get ...
0
votes
0answers
75 views

Python - difference in speed between command line and browser

I am timing the execution of a script by subracting one time.time() from another one, the first at the start and the second one at the end of the code. I realize that when I run the script from ...
0
votes
2answers
87 views

How terminate Python thread without checking flag continuously

class My_Thread(threading.Thread): def __init__(self): threading.Thread.__init__(self) def run(self): print "Starting " + self.name cmd = [ "bash", 'process.sh'] ...
0
votes
3answers
50 views

simple threading in python

I have a function in my GUI that takes a while to complete since it comunicates with another programm. Since I don't want to wait for it to finish everytime before resuming work with the GUI, I want ...
1
vote
4answers
69 views

Python - very simple multithreading parallel URL fetching (without queue)

I spent a whole day looking for the simplest possible multithreaded URL fetcher in Python, but most scripts I found are using queues or multiprocessing or complex libraries. Finally I wrote one ...
1
vote
2answers
100 views

What does dummy_threading do?

When would I use dummy_threading? I had thought it might replace system-level threads with mock threads in case system-level threads weren't available for Python. But when I run this: import ...
0
votes
0answers
30 views

Scheduling simultaneous events with a defined time range (Advanced Python Scheduler?)

So here's setup, I have an object, let's call it X, that is polled every 500ms (somewhat irrelevant) now say I have 2 other objects, we'll call them s1 and s2, that watch different values that X is ...
0
votes
1answer
78 views

Common exception handler for multi-threaded Python application

Is it possible to catch exceptions for all threads of a Python application with a common exception handler? Consider the following example. I'd like to catch CTRL+C from the main thread, but ...
0
votes
1answer
31 views

How to give outside arguments to a thread (in realtime)?

Background I am trying to code a solution to a problem on Raspberry Pi Stackexchange. The person is creating a kiosk, and wants Midori (A browser on Raspbian Wheezy) to reload itself if a network ...
1
vote
2answers
76 views

pyzmq create a process with its own socket

I have some code thats monitoring some other changing files, what i would like to do is to start that code that uses zeromq with different socket, the way im doing it now seems to cause assertions to ...
3
votes
0answers
136 views

Python Popen on Windows with multithreading - can't delete stdout/stderr logs

Using python 2.7.4 on Windows (Note: WinXP - a commenter below suggests this works correctly on Win7), I have a script that creates several threads each of which runs a child process via Popen with ...
1
vote
1answer
33 views

Executing callback immediately after map_async finishes

I'm using map_async with processes that return a ton of data. The normal map_async results in the data being stored in memory, then returned when everything is processed. To get around this, I've ...
2
votes
1answer
55 views

Python 3 “Lock” for both: threads and processes

I have been trying to code a cache in python 3 and I want to avoid concurrency issues for both, threads and process. I have been using threading for thread-safe code, and multiprocessing for process ...
0
votes
1answer
29 views

python threading blocks

I am trying to write a program which creates new threads in a loop, and doesn't wait for them to finish. As i understand it if i use .start() on the thread, my main loop should just continue, and the ...
0
votes
2answers
97 views

running script multiple times simultaniously in python 2.7

Hello I am trying to run a script multiple times but would like this to take place at the same time from what I understood i was to use subprocess and threading together however when i run it it ...
0
votes
1answer
43 views

What's the best method to create a thread that can be ended from the main thread in python?

I'm capturing data from an accelerometer. I want the user to be able to begin recording data and stop recording by pressing a start and stop button respectively. I decided to do this with threads so ...
0
votes
1answer
160 views

Python: Using bottle with Tornado web server to handle concurrent connections

I'm new to Python and web technologies, I am currently building a web service that uses bottle framework. But I found out that the requests to my server actually interfere with each other, i.e when ...
0
votes
1answer
74 views

How to preserve file write order when using threading in python

I have some python code to read a file and push data to a list. Then put this list to queue, use threading to process the list, say 20 items a time. After processing, I save the result into a new ...
0
votes
0answers
37 views

python multiprocessing or thread for invoking BlobReader

I have the following setup: def alpha(self, blah, blah): image = self.get_image(blob_key) # do more stuff here def get_image(self, blob_key): blob_reader = blobstore.BlobReader(blob_key) ...
1
vote
0answers
185 views

OpenCV Python Running HAAR Cascade Detect in Threads

I am trying to detect Vehicles using HAAR Cascade in a separate thread. Here's some of my code: Main Thread: (isRead,cvImage)=cvCamSource.read() lane1=Lane(cvCamSource,Lane.InflowLane) print 'Blah ...
0
votes
2answers
46 views

Python threading for wheel encoders on a Robot

I'm writing the code for a robot which my college is entering into a competition. I'm currently trying to build some wheel encoders using reflectance sensors. I realised a while back that I would ...
0
votes
2answers
25 views

2 digit argument for args in Thread() do not work

Here I have the relevant code snippets for my question: from threading import Thread . . . def do_post(thread_no): print "Starting thread no: " + thread_no + "\n" . . . for i in ...
-1
votes
2answers
89 views

Python 3 Timed Input

What I would like to be able to do is ask a user a question using input. For example: print('some scenario') prompt = input("You have 10 seconds to choose the correct answer...\n") and then if the ...
0
votes
1answer
112 views

Passing values between threads using queue module in Python

I am looking for a way to pass values(ex integers,arrays) between multiple threads in Python. I understand that this task can be achieved by using the Queue module, but I am not very familiar neither ...
0
votes
1answer
90 views

Python threading and semaphore

I have a python class let's call it AClass and another one MyThread which extends Thread. And in that AClass I make 2 objects of the class MyThread and I also have a semaphore which I give it as a ...
4
votes
1answer
342 views

How to best perform Multiprocessing within requests with the python Tornado server?

I am using the I/O non-blocking python server Tornado. I have a class of GET requests which may take a significant amount of time to complete (think in the range of 5-10 seconds). The problem is ...
1
vote
2answers
237 views

What are the Tornado and Mongodb blocking and asynchronous considerations?

I am running the Tornado web server in conjunction with Mongodb (using the pymongo driver). I am trying to make architectural decisions to maximize performance. I have several subquestions regarding ...
0
votes
0answers
23 views

Errors in pool.map in django just return the fact that there was an error, not where it was in the mapped function

I have some fairly hefty code in Django and am using pool.map() to parallelize it. A super trivial breakdown of it would be something like: def addNumbers(server): conn = Connection(server) ...
2
votes
2answers
59 views

Pool generating infinitely many worker processes

I'm doing some slow computations using networkx (Network analysis library), and I'm trying to use Pool workers to make it somewhat faster. The computations are independent so should be relatively ...
1
vote
3answers
108 views

How to Multi-thread an Operation Within a Loop in Python

Say I have a very large list and I'm performing an operation like so: for item in items: try: api.my_operation(item) except: print 'error with item' My issue is two fold: ...
2
votes
3answers
62 views

How can I determine sensible thread number in python?

I am writing a simple script which should do big amount of checks. Every check is independent so I decided to put it into multiple threads. However I don't know how fast will be machine on which the ...
0
votes
2answers
91 views

Python threads, thread is not informed to stop

I would like to stop a Python thread when the main program stops. It is for a class that connects to a server. The connection is maintained by the background thread, the foreground thread answers to ...
0
votes
0answers
116 views

How to listen to only certain signals using python dbus

I have a main function that consists of this code: client_manager = Manager("client_manager") app_manager = Manager("app_manager") print("hi1") ...
0
votes
2answers
134 views

How to multithread a client and server in the same .py , but on different ports

I want to make a chat program on Python, such that I can send as well as receive data. I was thinking that I could have multiple threads running, one for the client and server each. My Question is How ...
0
votes
1answer
136 views

Python SocketServer passing data to the main thread via Thread local storage

Sorry if this question is too basic - this is the first time that I try using multithreaded sockets in Python. Basically, I'm trying to write code that gets data that's being received by a UDPServer ...
0
votes
1answer
49 views

Making a call to a thread object's method from the context of the thread

I'm trying to make a call to one of a thread object's methods from the context of the thread using the object's handle. However, this isn't working and instead the call to the method is being made ...
1
vote
2answers
175 views

Python functions don't behave as expected when called from threaded class

I am trying to write a game using the new Minecraft Pi Edition API for Python 2.7. I had the game almost finished, when I realised that there where two sections of the code blocking each other. If I ...
0
votes
1answer
127 views

Python multithreading - closing thread in Blender

I have a little problem, with a multithreaded python script in blender game engine. It works alright, but when I stop the game, It raises some exceptions and sometimes crashes. from bge import logic ...
-4
votes
1answer
134 views

Email harvester in Python: How to improve performance?

I have found a program called "Best Email Extractor" http://www.emailextractor.net/. The website says it is written in Python. I tried to write a similar program. The above program extracts about 300 ...
0
votes
1answer
45 views

How to block entering into one section in another place of program only?

I have two sections of code: section_a # some code section_b I need to block the section_a only if the section_b is executed. The section_a can be executed by many threads if there is no block in ...
1
vote
1answer
76 views

Pass a counter from a python thread to a wxpython gage?

I am trying to pass a counter from a python COM thread back into a wxpython tabpanel. Anyone have a solution that would work. Some of my code below: This class is seperate from my wxPython code but ...

1 2 3 4