Python_Gooey和pyinstaller打造易用的工具
Posted 辰令
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python_Gooey和pyinstaller打造易用的工具相关的知识,希望对你有一定的参考价值。
Python沟通
Python 搭建 GUI 界面时,首选Gooey ,然后 PyQt5 和 Tkinter,
Pyinstaller
: --paths 后接第三方模块的路径,多个路径直接用逗号分隔(英文逗号)
-F 后接源文件路径
使用-F,只生成一个大的可执行文件
--clean 表示清理打包完成后的临时文件(可选,但建议写上)
打包多个.py文件
打包的py文件(并记录好文件路径),以及第三方库的路径
我的源文件路径 D:\\《Numpy数据处理详解》电子书\\打包\\pyinstaller学习.py
我的用到的第三方库 C:\\Users\\huawei\\AppData\\Roaming\\Python\\Python39\\site-packages\\pandas,xlwings
pyinstaller -F pyinstaller学习.py --paths C:\\Users\\huawei\\AppData\\Roaming\\Python\\Python39\\site-packages\\pandas,xlwings --clean
安装
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple Gooey
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyinstaller
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jieba
需求示例
功能:输入:文件地址,输出:显示词频最高的十个词语
输入是GUI的形式
地址框,执行框
原理: 打包第三方库
代码示例
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import jieba
from gooey import Gooey, GooeyParser
import argparse
def get_file_words(input_file):
words =[]
with open(input_file,mode="r",encoding="utf8") as fw:
lines = fw.readlines()
for line in lines:
line = line.replace("\\r","").replace("\\r","").strip().replace(\' \',\'\')
cut_word_list = jieba.cut(line,cut_all=False)
stopwords=[\':\',\'“\',\'!\',\'”\',\' \',\',\',\'、\']
for sig_word in cut_word_list:
if sig_word not in stopwords:
words.append(sig_word)
return words
def get_freq(words):
# 统计每一个汉字的出现次数,使用字典的形式进行统计
result =
for word in words:
res = result.get(word, 0)
if res == 0:
result[word] = 1
else:
result[word] = result[word] + 1
result = sorted(result.items(), key=lambda kv:(kv[1], kv[0]), reverse=True)
return result
def regular_main():
parser = argparse.ArgumentParser(description="My Cool !")
parser.add_argument(\'--filename\', help="name of the file to process", default=r\'D:\\annotation\\info.txt\')
args = parser.parse_args()
exp_file_nm = args.filename
exp_word = get_file_words(exp_file_nm)
exp_freq = get_freq(exp_word)
print(exp_freq[:5])
### 待完善
@Gooey(target="stat word freq")
def main():
parser = GooeyParser(description="My Cool !")
parser.add_argument(\'filename\',
metavar=\'Input file\',
help=\'The file for which you want to static freq\',
widget=\'FileChooser\')
args = parser.parse_args()
print(args)
# exp_file_nm = str(args.filename)
# print(exp_file_nm)
# exp_word = get_file_words(exp_file_nm)
# exp_freq = get_freq(exp_word)
# print(exp_freq[:5])
if __name__ == \'__main__\':
#regular_main()
main()
参考
Python的tkinter和pyinstaller打造易用的工具 https://www.cnblogs.com/ytwang/p/15111997.html
谈谈 Pyinstaller 的编译和反编译,如何保护你的代码
转载自:https://zhuanlan.zhihu.com/p/109266820
谈谈 Pyinstaller 的编译和反编译
用Python写脚本,小程序可谓非常方便,但它需要有特定的python环境才能运行,因此如果你想在别的电脑上运行时就会出现许多问题,就算已经安装了Python,但版本可能相差较大,且相关的依赖库没有安装,同样不能正常运行。那有没有一种工具能把我们写的代码和依赖库以及编译环境打包到一起呢?答案是肯定的,Pyinstaller
就是一款不错的工具,可以一键把你的代码打包成exe文件。下面就先来聊一聊pyinstaller
的使用方法。
一、用Pyinstaller打包python代码:
1. 安装Pyinstaller
安装过程非常简单,在命令行中运行:
pip install pyinstaller
即可完成安装。
2. 打包代码
我写了一段简单的代码作为例子,为了更清晰地演示打包过程,我将main()函数写在了单独的文件中,并将mylib.py
作为一个库引入。
# mylib.py # import time def myfunc(): now = time.time() time_str = time.strftime("%Y-%m-%d %H:%M", time.localtime(now)) print(\'现在是\' + time_str) print("Have a nice day!")
# main.py # import mylib import os if __name__ == "__main__": mylib.myfunc() os.system(\'pause\')
这时只需要在命令行中运行:
pyinstaller.exe -F yourcode.py
即可。会看到一下输出:
PS D:\\文档\\tmp\\test> pyinstaller.exe -F main.py 580 INFO: PyInstaller: 3.6 582 INFO: Python: 3.7.3 585 INFO: Platform: Windows-10-10.0.18362-SP0 592 INFO: wrote D:\\文档\\tmp\\test\\main.spec 596 INFO: UPX is not available. 611 INFO: Extending PYTHONPATH with paths [\'D:\\\\文档\\\\tmp\\\\test\', \'D:\\\\文档\\\\tmp\\\\test\'] 612 INFO: checking Analysis 614 INFO: Building Analysis because Analysis-00.toc is non existent 614 INFO: Initializing module dependency graph... 620 INFO: Caching module graph hooks... 657 INFO: Analyzing base_library.zip ... 13893 INFO: Caching module dependency graph... 14161 INFO: running Analysis Analysis-00.toc 14233 INFO: Adding Microsoft.Windows.Common-Controls to dependent assemblies of final executable required by d:\\programfiles\\python\\python.exe 15748 INFO: Analyzing D:\\文档\\tmp\\test\\main.py 15751 INFO: Processing module hooks... 15752 INFO: Loading module hook "hook-encodings.py"... 16003 INFO: Loading module hook "hook-pydoc.py"... 16011 INFO: Loading module hook "hook-xml.py"... 16916 INFO: Looking for ctypes DLLs 16917 INFO: Analyzing run-time hooks ... 16925 INFO: Looking for dynamic libraries 17373 INFO: Looking for eggs 17374 INFO: Using Python library d:\\programfiles\\python\\python37.dll 17374 INFO: Found binding redirects: [] 17377 INFO: Warnings written to D:\\文档\\tmp\\test\\build\\main\\warn-main.txt 17447 INFO: Graph cross-reference written to D:\\文档\\tmp\\test\\build\\main\\xref-main.html 17506 INFO: checking PYZ 17507 INFO: Building PYZ because PYZ-00.toc is non existent 17508 INFO: Building PYZ (ZlibArchive) D:\\文档\\tmp\\test\\build\\main\\PYZ-00.pyz 18600 INFO: Building PYZ (ZlibArchive) D:\\文档\\tmp\\test\\build\\main\\PYZ-00.pyz completed successfully. 18637 INFO: checking PKG 18639 INFO: Building PKG because PKG-00.toc is non existent 18640 INFO: Building PKG (CArchive) PKG-00.pkg 22329 INFO: Building PKG (CArchive) PKG-00.pkg completed successfully. 22332 INFO: Bootloader d:\\programfiles\\python\\lib\\site-packages\\PyInstaller\\bootloader\\Windows-64bit\\run.exe 22334 INFO: checking EXE 22335 INFO: Building EXE because EXE-00.toc is non existent 22336 INFO: Building EXE from EXE-00.toc 22416 INFO: Appending archive to EXE D:\\文档\\tmp\\test\\dist\\main.exe 22641 INFO: Building EXE from EXE-00.toc completed successfully.
你将在当前文件夹下看到如下文件:
D:. │ main.py │ main.spec │ mylib.py ├─build │ └─main │ Analysis-00.toc │ base_library.zip │ EXE-00.toc │ main.exe.manifest │ PKG-00.pkg │ PKG-00.toc │ PYZ-00.pyz │ PYZ-00.toc │ warn-main.txt │ xref-main.html └─dist main.exe
其中dist
文件夹中就是生成的exe文件。
直接双击exe文件就能正常运行了。
但这篇文章的重点并不是介绍如何使用pyinstaller
。此时,我又在思考,如此简单的打包过程究竟安全吗?打包成的exe文件会不会轻而易举地被反编译?
查阅了相关资料后发现,确实可能。
二、pyinstaller 的反编译过程
1. 下载并使用pyinstxtractor
解包
我们第一步采用的工具是pyinstxtractor.py
,可以将pyinstaller 生成的exe文件解包成pyc
文件。
下载地址:
https://sourceforge.net/projects/pyinstallerextractor/
之后把这个文件复制到待解包exe同级目录下,运行如下命令:
python pyinstxtractor.py xx.exe
运行后生成xx.exe_extracted
文件夹 ,里面有一堆dll
,pyd
等文件,我们需要注意的是里面有一个xxx.exe.manifest
文件,xxx
可能与你的exe文件名不同,但这才是它的真实名字。然后找到一个叫xxx
的没有后缀名的文件,它其实就是你之前打包的那个.py
文件对应的pyc
文件。
我们还注意到此目录下还有一个PYZ-00.pyz_extracted
文件夹,里面都是引入的依赖库,当然,我们自己写的mylib.py
也在其中,它也是我们反编译的对象。
2. 反编译pyc
文件
找到了pyc
文件,下面自然就是对它进行解密了。pyc
其实是python
程序执行过程中产生的缓存文件,我们直接运行python
代码时也会看到。对于这种格式的反编译是比较简单的,网上有许多工具,甚至还有很多在线工具。这里为了方便,我就采用了一款在线工具。附上链接
但直接将我们找到的pyc
文件上传会发现无法反编译。原因是什么呢?我们用十六进制编辑器(大家网上搜就行,我这里用的是wxMEdit
)打开这个文件,与之前直接运行py
文件生成的pyc
文件比较。
我先来看一下main.pyc
的区别,左边是我们解包出来的,右边是运行生成的。
发现唯一的差别就是少了第一行16个字节(叫做 magic number 表示python的版本和编译时间),那我们把它加上是不是就能正常解析了呢?确实是这样,但没有原始pyc
文件怎么办?我们再到xx.exe_extracted
文件夹里找一找。会发现有一个叫struct
的文件,我们给他加上后缀.pyc
反编译试试。发现成功反编译出如下内容:
这就说明它的 magic number 是正确的,那我们只要把它的前16个字节复制过去不就行了?我们再来试试,成了!main.py
中的内容被成功反编译出来了。
下面同理也能反编译出mylib.py
等依赖库中的内容,不过值得注意的是,网上很多教程都没有提到依赖库的pyc
文件缺少的字节数与主程序的不同!!!
左:struct
文件 | 中:解包出的mylib.pyc
| 右:正确的pyc
文件
我们发现它不是缺少了16个字节,而是中间少了4个字节!!!
那么,我们只需要把struct
头部的16个字节覆盖掉mylib.pyc
的前12个字节。
改好之后再进行反编译。
反编译成功!不过中文字符被解析成了Unicode编码,可以再使用相应工具转换。
可以看到,通过pyinstaller
打包的exe,还是能被较为容易地反编译的。那么有加密打包的方法吗?其实pyinstaller
本身就是支持加密的,下面就来说一说如何加密打包。(这也是个天坑。。。)
三、使用pyinstaller
加密打包exe
其实只要在打包时加个key
参数就能加密,
pyinstaller.exe -F --key 123456 xxx.py
不过需要依赖pycrypto
包,而python一般是不自带这个包的。因此需要我们手动安装。
1. 安装pycrypto
包
原本安装过程应该很简单,通过pip
就能安装。
pip install pycrypto
不过安装过程好像要调用VS编译器编译,这就造成了莫名其妙的问题,如果你在安装过程中没有报错,那么恭喜你,你可以跳过这部分了。
问题1:没有安装需要的C++ 14.0库
下载了离线安装包安装(离线安装包网上有很多,找一找就好了):
对于下载的Microsoft Visual C++ 版本:
Visual Studio 2013 ---> 12
Visual Studio 2015 ---> 14
Visual Studio 2017 ---> 15
python3 是用 VC++ 14 编译的, python27 是 VC++ 9 编译的, 安装 python3 的包需要编译的也是要 VC++ 14 以上支持的.
2.在你的VS安装目录下找到stdint.h
这个文件,最好用everything搜索一下
3.输入set CL=-FI"你的路径\\stdint.h"
设置环境变量
4.然后再执行pip install pycrypto
就能成功安装了
2. 使用pyinstaller
加密打包
现在执行如下命令就能加密打包了。key后面为密钥可以随便输。
pyinstaller.exe -F --key 123456 xxx.py
3. 反编译测试
那么我们再来测试一下加密打包的exe还能不能被反编译。
再次执行pyinstxtractor.py
PS > python pyinstxtractor.py .\\main-encrypt.exe import imp [*] Processing .\\main-encrypt.exe [*] Pyinstaller version: 2.1+ [*] Python version: 37 [*] Length of package: 5787283 bytes [*] Found 63 files in CArchive [*] Beginning extraction...please standby [+] Possible entry point: pyiboot01_bootstrap [+] Possible entry point: main [*] Found 136 files in PYZ archive [!] Error: Failed to decompress Crypto, probably encrypted. Extracting as is. [!] Error: Failed to decompress Crypto.Cipher, probably encrypted. Extracting as is. [!] Error: Failed to decompress __future__, probably encrypted. Extracting as is. [!] Error: Failed to decompress _compat_pickle, probably encrypted. Extracting as is. [!] Error: Failed to decompress argparse, probably encrypted. Extracting as is. [!] Error: Failed to decompress ast, probably encrypted. Extracting as is. [!] Error: Failed to decompress base64, probably encrypted. Extracting as is. [!] Error: Failed to decompress bdb, probably encrypted. Extracting as is. [!] Error: Failed to decompress bisect, probably encrypted. Extracting as is. [!] Error: Failed to decompress bz2, probably encrypted. Extracting as is. [!] Error: Failed to decompress calendar, probably encrypted. Extracting as is. [!] Error: Failed to decompress cmd, probably encrypted. Extracting as is. [!] Error: Failed to decompress code, probably encrypted. Extracting as is. [!] Error: Failed to decompress codeop, probably encrypted. Extracting as is.
这次下面输出了一长串Error,看来确实是被加密了。
我们再来看一看文件夹。
main-encrypt.exe_extracted
文件夹里似乎没什么变化,但PYZ-00.pyz_extracted
文件夹里全是加密文件,应该是无法反编译了
不过对外层文件夹中的main
文件进行同样操作后依然是可以反编译出源码的。
看来这个加密只针对依赖库。
四、总结
如果你不希望别人得到你的源码,建议将你程序的入口函数写在一个单独的文件里,并采用加密方式打包exe。这样的话,就算别人尝试反编译也只能得到你的入口函数。
以上是关于Python_Gooey和pyinstaller打造易用的工具的主要内容,如果未能解决你的问题,请参考以下文章
python中我用pyinstaller打包的exe文件打不开,报错如下 是啥问题啊 F
Pyinstaller 的 PyQT5 QFileDialog 问题