分享pywebio,pyinstaller的基本用法,学会了pywebio 可以让你快速做出各种有趣使用的小工具!
2022年来了,几个同事让我给他们写个展示下python能干啥。于是我给他们写了一个计算器,让他们看看。
本文用到一个比较有意思的库:pywebio。
pip install pyinstallerpip install pywebio
from pywebio import start_serverfrom pywebio.output import *from pywebio.pin import *def calc(exp): try: return f"{exp}={eval(exp)}" except: return f"{exp}:表达式不正确"def refresh(exp): out = calc(exp) with use_scope("aa", clear=True): put_text(out)def webmain(): put_markdown("## 简易计算器 /n 输入计算表达式:") put_input("res") put_buttons(["计算"], lambda _: refresh(pin.res))start_server(webmain, host="127.0.0.1", port=2022)
运行上述程序,在浏览器中输入 http://127.0.0.1:2022/ ,得到如下效果:
pyi-makespec -F main.py #-F: 打包成一个软件包
from pywebio.utils import pyinstaller_datas # 开始增加这一句!a = Analysis(...datas=pyinstaller_datas(), # 修改成一摸一样...
pyinstaller main.spec
在打包路径dist文件夹下,有一个文件:main.exe,可以直接打开,或者发给同事。
本文pywebio的大包有些技巧。大多数程序的打包可以无需配置文件,直接打包即可。使用如下命令打包:
pyinstaller -F main.py -i icon.ico
上面分享了pywebio,pyinstaller的基本用法,学会了pywebio 可以让你快速做出各种有趣实用的小工具!
本文链接:http://www.28at.com/showinfo-26-54004-0.htmlPython 30行代码内制作一个计算器
声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。邮件:2376512515@qq.com
上一篇: React中的useLayoutEffect与useEffect有什么区别?
下一篇: Python玩转二维码,炫酷!