wxPython GUI 作为网络客户端
我目前正在为科学实验开发 GUI。我正在使用 wxPython。
我已经完成了设计部分以及 SQLite 数据库中的数据记录。 GUI 是否可以充当 Web 客户端并将数据写入网站。我有一个 Kodingen 帐户。每次运行此 GUI 时都可以写入我的主页吗?
I am currently working on a GUI for a science experiment. I am using wxPython.
I have done the design part and also the data logging in an SQLite database. Is it possible for the GUI to behave as a web-client and write data onto a website. I have a Kodingen account. Can this GUI write to my homepage everytime I run it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用 httplib 或类似的工具与您的网站进行通信,并使用 wxPython 作为前端。当您点击“提交”按钮或其他任何按钮时,您将调用 httplib 或类似的库将数据发布到您的网站。您可能需要使用线程来保持 GUI 的响应能力。
You should be able to use httplib or similar to communicate with your website and use wxPython as the front-end. When you hit you're Submit button or whatever, you would call httplib or a similar library to post the data to your website. You might need to use threads to keep the GUI responsive.