vote up 0 vote down star
1

I have a simple pygtk app using urllib2, what changes should I make to add working twisted code?

The pbgtk2.py example it's confusing

flag
-1: No code here, either. That's confusing, too. – S.Lott Mar 5 at 10:49

1 Answer

vote up 3 vote down check

You switch from using the gtk mainloop to the right Twisted reactor. Or you decide to run Twisted in a separate thread using reactor.run(installSignalHandlers=0), and stay with the gtk mainloop.

You decide if you want to defer the urllib2 call to its own thread, or if you want to rewrite that code using Twisted's HTTP client libraries.

You go to the Twisted mailing list or IRC channel and ask for help.

link|flag

Your Answer

Get an OpenID
or

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