Pyinstaller加密打包应用的示例代码
pyinstaller是一个非常简单的打包python的py文件的库。用起来就几条命令就够了, 官方文档:pyinstaller 代码混淆 使用https://pyob.oxyry.com/ 进行代码的混淆(找不到什么可用的离线混淆库) 抓取真实api后 def obfuscation(py_file, save_path): print("读取文件:", py_file) with open(py_file, "r", encoding="utf-8") as f: py_content = f.read() print("进行混淆中...") url = "https://
用户评论