23python源码编译加密
利用python3和python2自带模块进行源码加密
模块一 py_compile
python -m py_compile test.py
模块二 compileall
python -m compileall test.py
对目录下py文件进行编译加密
python -m compileall .
利用python3和python2自带模块进行源码加密
模块一 py_compile
python -m py_compile test.py
模块二 compileall
python -m compileall test.py
对目录下py文件进行编译加密
python -m compileall .