wxPython and Twisted

as far i know Twisted and Wx can co-operate well. I need to use that
projects
in an app. under Windows and Linux.
Somone knows if it works perfectly ?

I have both together in in a small application and it worked without a
problem. Just be sure that you don't use the GUI directly from another
thread. Use wxPostEvent instead.

Make sure you fetch threadedselectreactor from CVS (search about it in the twisted ML archives) and don't use the old wx integration stuff.

Best regards,
Henning Hraban Ramm
Südkurier Medienhaus / MediaPro
Support/Admin/Development Dept.

Also for me, this are the solution. Don't use the "old" wxreactor. In
the new release will be deprecate. Use threadedselectreactor instead.

You can find a (wx)demo here:
http://svn.twistedmatrix.com/cvs/trunk/doc/core/examples/threadedselect/

and the threadedselectreactor.py file here:
http://svn.twistedmatrix.com/cvs/trunk/twisted/internet/

P.s. That file is the only that you need to make twisted 2.0 work with wx.

Bye,
Michele

···

Henning.Ramm@mediapro-gmbh.de wrote:

as far i know Twisted and Wx can co-operate well. I need to use
that projects in an app. under Windows and Linux. Somone knows if
it works perfectly ?

I have both together in in a small application and it worked
without a problem. Just be sure that you don't use the GUI directly
from another thread. Use wxPostEvent instead.

Make sure you fetch threadedselectreactor from CVS (search about it
in the twisted ML archives) and don't use the old wx integration
stuff.