Kivy-如何从服务器持续接收数据并使用kivy更新界面
Kivy- How to receive data from a server continuously and update the interface using kivy
我正在用 kivy 开发 GUI。
我想做的是从服务器接收数据并用接收到的数据不断更新界面。我怎样才能做到这一点?环顾网络,我对 Twisted reactor、多线程、kivy 时钟基础对象、非阻塞操作很感兴趣,但我有点迷茫,我不知道什么能满足我的需求。
有人可以帮助我吗?
非常感谢。
Twisted 是我的推荐。它具有良好的性能并且已经集成到 Kivy 事件循环中。我们在企业 Kivy 应用程序中使用 Twisted 进行所有网络通信。
link provided by Totem in the comments is a good simple example of using Twisted with Kivy. If you control both ends of the communication then I would recommend looking at Twisted's Perspective Broker.
我正在用 kivy 开发 GUI。
我想做的是从服务器接收数据并用接收到的数据不断更新界面。我怎样才能做到这一点?环顾网络,我对 Twisted reactor、多线程、kivy 时钟基础对象、非阻塞操作很感兴趣,但我有点迷茫,我不知道什么能满足我的需求。
有人可以帮助我吗?
非常感谢。
Twisted 是我的推荐。它具有良好的性能并且已经集成到 Kivy 事件循环中。我们在企业 Kivy 应用程序中使用 Twisted 进行所有网络通信。
link provided by Totem in the comments is a good simple example of using Twisted with Kivy. If you control both ends of the communication then I would recommend looking at Twisted's Perspective Broker.