欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-06-22 15:29:25
pyinstaller是一个非常简单的打包python的py文件的库。用起来就几条命令就够了,官方文档:代码混淆使用 进行代码的混淆(找不到什么可用的离线混淆库)抓取真实api后def obfusca...

pyinstaller是一个非常简单的打包python的py文件的库。用起来就几条命令就够了,

官方文档:

代码混淆

使用 进行代码的混淆(找不到什么可用的离线混淆库)

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

抓取真实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://pyob.oxyry.com/obfuscate"
 headers = {
  "user-agent": "mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/81.0.4044.138 safari/537.36",
  "referer": "http://pyob.oxyry.com/",
  "content-type": "application/json",
  "cookie": "_ga=ga1.2.1306886713.1588752647; _gid=ga1.2.46944674.1588899118"
 }
 data = json.dumps({
  "append_source": "false",
  "preserve": "",
  "remove_docstrings": "true",
  "rename_default_parameters": "false",
  "rename_nondefault_parameters": "true",
  "source": py_content
 })
 result = json.loads(requests.post(url, data=data, headers=headers).text)["dest"]
 result = "# cython: language_level=3\n" + result
 print("混淆成功...")

 with open(save_path, "w", encoding="utf-8") as f:
  f.write(result)
 print("混淆文件已写入{}\n".format(save_path))
 
if __name__ == '__main__':
 obfuscation("my.py", "../混淆/my.py")
 obfuscation("approach.py", "../混淆/approach.py")

编译pyd

build_pyd.py

from distutils.core import setup
from cython.build import cythonize

setup(
 name='any words.....',
 ext_modules=cythonize(["my.py","approach.py" ])
)

执行打包

import json
import os
# 清理旧pyd文件
import uuid
import requests
def clearpyd():
 for file in os.listdir():
  if ".pyd" in file:
   print("删除.pyd:", file)
   os.remove(file)
 print("***********************************************************************")
# 构建pyd文件
def buildpyd():
 os.system("python build_pyd.py build_ext --inplace")
# 重命名pyd文件
def renamepyd():
 print("***********************************************************************")
 for file in os.listdir():
  if ".pyd" in file:
   print("重新命名pyd:", file)
   os.rename(file, file[:file.find(".")] + ".pyd")
 for file in os.listdir():
  if ".c" in file:
   print("删除.c文件:", file)
   os.remove(file)
 print("***********************************************************************")
# 执行打包
def pyinstaller(key, ico):
 os.system("pyinstaller -f --key {} -i {} main.py".format(key, ico))
# 删除bulid和spec文件
def clearbuildandspec():
 import shutil
 shutil.rmtree('build')
 print("删除bulid文件夹")
 os.remove("main.spec")
 print("删除spec文件")
if __name__ == '__main__':
 clearpyd() # 清理旧pyd文件
 buildpyd() # 构建pyd文件
 renamepyd() # 重命名pyd文件
 pyinstaller(uuid.uuid4()[0:16], "1.ico") # 执行打包
 clearpyd() # 清理pyd文件
 clearbuildandspec() # 删除bulid和spec文件

总结

到此这篇关于pyinstaller加密打包应用的文章就介绍到这了,更多相关pyinstaller加密打包内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!