使用 python gui 的 facebook 客户端窗口

发布于 2024-10-15 18:46:24 字数 434 浏览 1 评论 0原文

我已经在 wxpython 标签中发布了这个问题,但考虑将其发布在这里,因为对此需要迫切的帮助。我们一直在尝试为 Facebook 客户端构建一个应用程序之类的东西。我们希望在客户端本机上显示 Facebook 状态更新/发布更新。仅供参考:类似这样的 http ://loiclemeur.com/english/2009/03/facebook-client-minor-upgrade-turn-sound-onoff.html。我们已将 wxPython 用于此应用程序的所有其他 gui 部分。但对于持续更新,我只是不知道最好的方法是什么。我想我在这方面错过了一些重要的事情。任何指示/帮助/建议都会很棒。

I have posted this ques with in wxpython tag, but thought of posting it here as need desperate help on this. We have been trying to build an app for facebook client sort of thing. We would like to display the fb status updates/post updates on client native machine. Just for the ref: something like this http://loiclemeur.com/english/2009/03/facebook-client-minor-upgrade-turn-sound-onoff.html. We have used wxPython for our all other gui part for this application. But for continuous update one, I am just not having any clue what would be the best approach for this. I guess I am missing something big time on this front. Any pointers/help/suggestion would be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

笔落惊风雨 2024-10-22 18:46:24

通过 wxPython,我将使用 wx.Timer 对象定期检查 Facebook 的更新。我很确定你不能太频繁地点击它们,否则你的应用程序的 API 密钥将被撤销。确保您了解密钥的限制。无论如何,在计时器对象处理程序中,我将使用新的更新来更新应用程序的 GUI。

With wxPython, I would use a wx.Timer object to check Facebook periodically for updates. I'm pretty sure you can't hit them too often or your application's API key will be revoked. Make sure you know the limits of your key. Anyway, in the timer objects handler, I would update your application's GUI with the new updates.

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