将扭曲的代码添加到 pygtk 应用程序
我有一个使用 urllib2 的简单 pygtk 应用程序,我应该进行哪些更改来添加工作扭曲代码?
pbgtk2.py 示例令人困惑
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您从使用 gtk 主循环切换到右侧 Twisted Reactor。 或者您决定使用 reactor.run(installSignalHandlers=0),并保持 gtk 主循环。
您决定是否要将 urllib2 调用推迟到 其自己的线程,或者如果您想使用 重写该代码Twisted 的 HTTP 客户端库。
您可以转到 Twisted 邮件列表或 IRC 频道并寻求帮助。
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.