I have a wxPython application (http://www.OpenSTV.org) that counts ballots using methods that have multiple rounds. I\'d like to do two things:
(1) For a large numb
There are several ways to call the main thread wxPython thread from a process thread. The simplest is wx.CallAfter() which will always execute the functional passed to it in the main thread. You can also use wx.PostEvent() and there's an example of this in the demo (labeled: Threads), and there are several more complicated but more customizable ways which are discussed in the last chapter of wxPython in Action.