详解python中.py文件打包成exe可执行文件实例代码

这篇文章主要给大家介绍了在python中.py文件打包成exe可执行文件的相关资料,文中介绍的非常详细,相信对大家具有一定的参考价值,需要的朋友们下面来一起看看吧。

前言

最近做了几个简单的爬虫python程序,于是就想做个窗口看看效果。

首先是,窗口的话,以前没怎么接触过,就先考虑用qt制作简单的ui。这里用前面sinanews的爬虫脚本为例,制作一个获取当天sina头条新闻的窗口。

生成py文件后,运行该py文件,这里窗口我只是随便拖了几个组件进去,主要的text browser用于显示获取到的sinanews。

首先贴一下我的配置

官方下载:

  pyqt5-5.2.1 for py3.3(当安装完python3.3后,安装对应pyqt,其会找到python安装目录,不用更改安装目录)

本地下载:

pyqt5-5.2.1 for py3.3(当安装完python3.3后,安装对应pyqt,其会找到python安装目录,不用更改安装目录)

python3.3默认是没有安装pip的,需要下载get-pip.py运行之后,提示安装成功。

接下来就要安装一些必要的组件了。为了安装方便,先把pip添加进环境变量。

下面我们就可以用pip命令安装组件了。

先把sina_news.py贴出来,观察需要哪些组件。

import requests
from bs4 import beautifulsoup
res = requests.get(‘http://news.sina.com.cn/china/’)
res.encoding = ‘utf-8′
soup = beautifulsoup(res.text,’html.parser’)
for news in soup.select(‘.news-item’):
if len(news.select(‘h2’)) > 0:
h2 = news.select(‘h2’)[0].text
a = news.select(‘a’)[0][‘href’]
time = news.select(‘.time’)[0].text
print(time,h2,a)

发现import requests,import beautifulsoup 所以先来安装这些组件

pip install requests
pip install beautifulsoup4

当我们把这段代码贴进窗口代码后:

x.py

# -*- coding: utf-8 -*-
# form implementation generated from reading ui file ‘x.ui’
#
# created by: pyqt5 ui code generator 5.8.1
#
# warning! all changes made in this file will be lost!
import sys
import requests
from pyqt5 import qtcore, qtgui, qtwidgets
from bs4 import beautifulsoup
class ui_x(object):
def getnews():
res = requests.get(‘http://news.sina.com.cn/china/’)
res.encoding = ‘utf-8′
soup = beautifulsoup(res.text,’html.parser’)
title = []
for news in soup.select(‘.news-item’):
if len(news.select(‘h2’)) > 0:
h2 = news.select(‘h2’)[0].text
title.append(h2)
a = news.select(‘a’)[0][‘href’]
time = news.select(‘.time’)[0].text
return ‘\n’.join(title)
def setupui(self, x):
x.setobjectname(“x”)
x.resize(841, 749)
self.timeedit = qtwidgets.qtimeedit(x)
self.timeedit.setgeometry(qtcore.qrect(310, 10, 141, 31))
self.timeedit.setobjectname(“timeedit”)
self.dateedit = qtwidgets.qdateedit(x)
self.dateedit.setgeometry(qtcore.qrect(100, 10, 191, 31))
self.dateedit.setobjectname(“dateedit”)
self.textbrowser = qtwidgets.qtextbrowser(x)
self.textbrowser.setgeometry(qtcore.qrect(60, 80, 701, 641))
self.textbrowser.setobjectname(“textbrowser”)
self.retranslateui(x)
qtcore.qmetaobject.connectslotsbyname(x)
def retranslateui(self, x):
_translate = qtcore.qcoreapplication.translate
x.setwindowtitle(_translate(“x”, “x”))
if __name__ == ‘__main__’:
app = qtwidgets.qapplication(sys.argv)
form = qtwidgets.qwidget()
ui = ui_x()
ui.setupui(form)
form.show()
ui.textbrowser.settext(ui_x.getnews())
sys.exit(app.exec_())

如果前面顺利的话,现在用python运行x.py应该能看到显示的窗口。

下面就是打包的过程了,这里笔者用的pyinstaller,没有安装的话,要安装一下:

pip install pyinstaller

安装完成后,cmd路径cd到x.py所在目录。

打包命令:

pyinstaller -w x.py

此时,在x.py便生成dist文件夹,打包的x.exe就在此文件夹下。双击x.exe显示效果:

当然还有许多改进的地方,比如在上面选择日期,获得指定日期的头条新闻。

可能遇到的问题:

打开打包后的程序无法运行显示:

importerror: no module named ‘queue’
during handling of the above exception, another exception occurred:
traceback (most recent call last):
file “test.py”, line 2, in
file “c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\pyinstaller\loader\pyimod03_importers.py”, line 389, in load_module
exec(bytecode, module.__dict__)
file “site-packages\requests\__init__.py”, line 63, in
file “c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\pyinstaller\loader\pyimod03_importers.py”, line 389, in load_module
exec(bytecode, module.__dict__)
file “site-packages\requests\utils.py”, line 24, in
file “c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\pyinstaller\loader\pyimod03_importers.py”, line 389, in load_module
exec(bytecode, module.__dict__)
file “site-packages\requests\_internal_utils.py”, line 11, in
file “c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\pyinstaller\loader\pyimod03_importers.py”, line 389, in load_module
exec(bytecode, module.__dict__)
file “site-packages\requests\compat.py”, line 11, in
file “c:\users\hasee\appdata\local\programs\python\python35-32\lib\site-packages\pyinstaller\loader\pyimod03_importers.py”, line 389, in load_module
exec(bytecode, module.__dict__)
file “site-packages\requests\packages\__init__.py”, line 29, in
importerror: no module named ‘urllib3’
failed to execute script test

当然这个错误代码,当时我没有保留,这是版本不匹配造成的:

我的pyinstaller为3.2

需要降低requests的版本,requests2.10可以成功打包,而2.11就不行。这里贴上解决此问题用到的requests2.10不知道以后会不会修复这个问题。这个bug昨天做梦我还梦到呢。今天早上起来就解决了,兴奋的受不了。希望在此过程中遇到的问题对你会有所帮助。

以上就是详解python中.py文件打包成exe可执行文件实例代码的详细内容,更多请关注 第一php社区 其它相关文章!

Posted in 未分类

发表评论