2020
10-07
10-07
Pyinstaller加密打包应用的示例代码
pyinstaller是一个非常简单的打包python的py文件的库。用起来就几条命令就够了,官方文档:pyinstaller代码混淆使用https://pyob.oxyry.com/进行代码的混淆(找不到什么可用的离线混淆库)抓取真实api后defobfuscation(py_file,save_path):print("读取文件:",py_file)withopen(py_file,"r",encoding="utf-8")asf:py_content=f.read()print("进行混淆中...")url="https://pyob.oxyry.com/obfuscate"headers={...
继续阅读 >