我们用pyinstaller把朋友文件打包成exe文件,但有时候我们需要还原,我们可以用pyinstxtractor.py
用法:
python pyinstxtractor.py xxx.exe
之后得到一个这样结构的文件夹
--- xxx.exe_extracted
-- out00-PYZ.pyz_extracted
- 各种.pyc文件
-- out00-PYZ.pyz
-- some
-- others
-- xxx(注意这些都是没后缀的)
然后再终端pip install uncompyle安装uncompyle,
然后就可以使用啦
uncompyle
1