对python源码进行编译,加密pyth

2023-01-31 02:01:24 编译 源码 加密

python源码进行编译

1.生成.pyc文件
import py_compile
py_compile.compile('hello.py')

2.优化源码文件
Python -O -m py_compile 1.py
生成.pyo文件

相关文章