from twisted.internet import wxreactor
wxreactor.install()
from twisted.internet import reactor


.....
write your code here
.....

reactor.registerWxApp(app)
reactor.run()


You don't need wx mainloop. The key thing here is to import wxreactor first
and install it and then import reactor. 'app' in the last but one line is
the instance of your wx.App .


On Fri, Aug 28, 2009 at 11:05 AM, 陶艺夫 <[email protected]> wrote:

> Hi,
> Anyone can give me a sample app skeleton to get two frameworks work
> together well? Or just give me a link where I can figure out the technical
> details.
>
> Thanks.
>
> _______________________________________________
> Twisted-Python mailing list
> [email protected]
> http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
>
>


-- 
Thanks & Regards,
Godson Gera
http://godson.in
_______________________________________________
Twisted-Python mailing list
[email protected]
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Reply via email to