python可以从远程服务器加载模块吗?
在python中,我可以将模块从远程服务器加载到本地吗? 我这样做是为了保护我的源代码。 我该怎么办,谢谢
in python,can i load a module from remote server to local?
what i do this is want to protect my source code.
what should i do ,thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它可以通过python导入钩子来完成。请参阅 knockout 了解可以直接使用或作为添加进一步代码保护逻辑的起点的实现
it can be done via python import hooks. see knockout for an implementation that you can either use directly or as a starting point to add further code-protection logic
有点偏离主题,但如果您需要源代码保护,请使用 cython 编译您的 python 源代码并分发 .pyd 文件。
您必须:
A bit off topic but if source protection is what you need C-compile your python source with cython and distribute .pyd files.
You'll have to:
是的,您可以以创造性的方式导入代码。
不,它不会保护代码不被看到。重新考虑你的战略,而不是战术。
Yes, you can import your code in creative ways.
No, it will not protect the code from being seen. Rethink your strategy, not tactics.