标签:style blog http color 文件 ar div 代码 log
在Python2.3之前Python自带反编译的工具,高版本的貌似这个反编译的已经不能用了。
据说是在Python2.7上最好用的反编译工具uncompyle 代码地址
http://github.com/gstarnberger/uncompyle
编译Python 把Python文件编译为pyc
python -m py_compile file.py
反编译Python 把pyc反编译成py
python uncompyler.py -o . file.pyc
查看帮助
python uncompyler.py --help
标签:style blog http color 文件 ar div 代码 log
原文地址:http://www.cnblogs.com/cnryb/p/3929317.html