通过网络运行 pyqt 应用程序
我正在做一个项目。我想知道我们是否可以使用服务器中的应用程序代码在客户端系统上运行 pyqt 应用程序,以便客户端不知道程序代码?
I am doing a project. I wanted to know if we can run a pyqt application on a client system with the code of the application in the server, so that the client has no idea abt the program code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
做到这一点的多种方法之一是“远程方法调用”。
Pyro 库是这种方法的不错选择:
http://packages.python.org/Pyro/index.html
如果你想深入挖掘,看看套接字编程:
http://docs.python.org/library/socket.html
One of many ways to do that is "remote method invocation".
The pyro library is good choice for that approach:
http://packages.python.org/Pyro/index.html
If you want to dig deeper, have a look at socket programming:
http://docs.python.org/library/socket.html