1. 首页
  2. 数据库
  3. 其它
  4. Pyinstaller加密打包应用的示例代码

Pyinstaller加密打包应用的示例代码

上传者: 2020-12-22 04:22:46上传 PDF文件 39.05KB 热度 14次
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://
用户评论