vote up 1 vote down star

I'm working on a small utility application in Python.

The networking is gonna send and recieve messages. The GUI is gonna display the messages from the GUI and provide user input for entering messages to be sent. There's also a storage part as I call it, which is gonna get all the network messages and save them in some kind of database to provide some kind of search later.

What my question is, what would be the best way to desing this? For sure all them have to happen in saperate threads, but what I'm wondering is how to pass information between them the best way? What kind of signal passing / thread locking available in Python should I use to avoid possible problems?

flag

Is there a strict requirement to use python or are you open to other languages? Tcl and Tk, for example, can do all the above easily without the need for threads. And to me, no threads means less complexity which is always a Good Thing. – Bryan Oakley Mar 31 at 13:29
I'm using an api-library to communicate with remote network services there... the API i got implemented in python and c++ – kender Mar 31 at 13:37

2 Answers

vote up 1 vote down check

I think that you could use a Queue for passing messages between the GUI and the network threads.

As for GUI and threads in general, you might find the PyGTK and Threading article interesting.

link|flag
vote up 2 vote down

One, probably the best, solution for this problem is to use Twisted. It supports all the GUI toolkits.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.