Python编译与反编译

py文件编译pyc

命令编译

python -m py_compile xxx.py

脚本编译

import py_compile

py_compile.compile(r'E:\mytest.py') #py文件完整的路径.

pyc文件反编译

安装uncompyle

uncompyle6 能反编译 Python3.0~Python3.8 的pyc文件

pip install uncompyle

反编译文件

将xxx.pyc反编译成xxx.py文件

uncompyle6 xxx.pyc > xxx.py

你可能感兴趣的:(python常用操作,python,开发语言)