pyc文件反编译为py文件
uncompyle6可将python字节码转换回等效的python源代码,它接受python 1.3版到3.8版的字节码。
uncompyle6 源码项目:https://github.com/rocky/python-uncompyle6
安装:
pip install uncompyle6
反编译:
uncompyle6 -o xxx.py xxx.pyc #反编译pyc文件,生产py文件
uncompyle6可将python字节码转换回等效的python源代码,它接受python 1.3版到3.8版的字节码。
uncompyle6 源码项目:https://github.com/rocky/python-uncompyle6
安装:
pip install uncompyle6
反编译:
uncompyle6 -o xxx.py xxx.pyc #反编译pyc文件,生产py文件