从 exe 恢复 Python 源代码

发布于 2024-12-02 11:24:18 字数 139 浏览 0 评论 0原文

我编写了一个 python 程序,使用 py2exe 将其转换为 exe 二进制文件。我在 dist 文件夹中生成了所有文件,但由于系统崩溃,我丢失了源代码。

有没有办法从 .exe 或 py2exe 生成的其他支持文件中获取 .py 源代码文件?

I had a python program written which I converted to an exe binary using py2exe. I have all of the files generated in the dist folder but due to a system crash, I lost the source code.

Is there a way to get the .py source code file back from .exe or other supporting files generated by py2exe?

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

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

发布评论

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

评论(1

守护在此方 2024-12-09 11:24:18

根据以下链接,您可以从library.zip中提取您的.pyc文件,然后使用decomppyle获得类似于以下内容的.py文件你开始于。

http://bytes.com/topic/python /answers/101743-py2exe-there-way-go-backwards-exe2py

http://sourceforge.net/projects/decompyle/

希望它能起作用,我希望你下次使用 github 或 bitbucket。

According to the following links, you can extract your .pyc files from library.zip and then use decompyle to obtain .py files similar to what you started with.

http://bytes.com/topic/python/answers/101743-py2exe-there-way-go-backwards-exe2py

http://sourceforge.net/projects/decompyle/

Hope it works, and I hope you use github or bitbucket next time.

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