Is it possible to decompile a compiled .pyc file i

2019-01-03 04:18发布

Is it possible to get some information out of the .pyc file that is generated from a .py file?

7条回答
虎瘦雄心在
2楼-- · 2019-01-03 05:16

Yes, it is possible.

There is a perfect open-source Python (.PYC) decompiler, called Decompyle++ https://github.com/zrax/pycdc/

Decompyle++ aims to translate compiled Python byte-code back into valid and human-readable Python source code. While other projects have achieved this with varied success, Decompyle++ is unique in that it seeks to support byte-code from any version of Python.

查看更多
登录 后发表回答