将扭曲的代码添加到 pygtk 应用程序

发布于 2024-07-14 17:42:15 字数 83 浏览 6 评论 0原文

我有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光倒影 2024-07-21 17:42:15

您从使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文