反编译pyc文件 decompile pyc file

首先确保安装了python,git,安装执行反编译程序需要。

其次安装反编译程序。

git clone https://github.com/gstarnberger/uncompyle.git
cd uncompyle/
python setup.py install

最后就来反编译吧。

python uncompyler.py my.pyc > my.py    --- 把pyc文件反编译为py文件,完成。


你可能感兴趣的:(python)