


If there is something that programmers are afraid of, then I think it may be - the needs have changed again!
No, the customer said after the author developed a browser-based Web application: Program It needs to be run in an internal (no) internal (network) environment...
This means that the Python environment cannot be installed!
Who calls us programmers? Why not develop a GUI version? No, it’s not a problem for me...
But after hearing the time given, I couldn’t calm down anymore...
In order not to affect the customer’s evaluation, we can only give one week!
Conception
Although it is not difficult to create a GUI, it does require sorting out the services and the interactive interfaces with users. If not, you will have to write a separate interface for the GUI, which is obviously not enough time.
No, just think of another way...
Otherwise, just package the web application into an executable program and copy it to the machine to run. There are many similar frameworks, such as Nodejs. Electron[1], Pywebview[2] in Python.
Just wrap the original Web program, then just do it!
The artifact appears
The Web program is developed with Flask, so Python needs to be installed Pywebview as packaging tool.
Create a virtual environment [3] or in the original Web project environment, execute:
pip install pywebview
In Windows system, .Net 4.0 or above is required
Try it out:
import webview window = webview.create_window('Hello!', 'http://http://www.justdopython.com') webview.start()
- Reference the webview library
- Start a window, set the title to Hello!, and specify the page address
- Start webview
You can see the following effect:
Try it first
It’s amazing!
Pywebview supports three modes, simple mode and server mode and thread mode.
Simple mode is equivalent to a customized streaming browser. You can browse by specifying an address, as in the example above.
Server mode is equivalent to packaging a Web application, which means it will start a local server and browse in a customized browser.
Thread mode is more advanced, which means you need to manually maintain the thread status to achieve more advanced gameplay.
For the current needs, we choose the server mode, which is to package a local Web application.
Connecting with Flask
The server mode will provide us with an HTTP Server, as long as the web application is deployed on it.
Because it just shows the code of the actual project, here is a simple Flask application:
Regarding Flask Web application development, you can refer to the Flask article written by the author before
Create one app.py file:
from flask import Flask, render_template, jsonify, request app = Flask(__name__) # 创建一个应用 @app.route('/') def index():# 定义根目录处理器 return render_template('index.html') @app.route('/detail') def detail(): return render_template('detail.html') if __name__ == '__main__': app.run() # 启动服务
This application is very simple, with only two pages, accessed through / and /detail.
If you run this code, a Flask application will be started and accessed through http://120.0.0.1:5000.
How to install it in Pywebview?
It’s very simple:
import webview from app import app if __name__ == '__main__': window = webview.create_window('Pywebview', app, height=600, width=1000) webview.start()
- Introduce webview
- Introduce the app you just created
- Create a webview window and pass app as the url parameter
- Then start the webview
The key here is to use the Flask application as the url parameter. Webview finds that the passed If the parameter entered is the flask application, the service mode will be started.
After running the program, you can see the same effect as in the browser:
Connecting to Flask
Directory problem
Now you can package this project into an exe.
First you need to install pyinstaller[4]
pip install pyinstaller
Then enter the program directory to execute:
pyinstall -F -w main.py
- The F parameter means packaging the program into an executable file, without adding This parameter will be packaged into a folder
- The w parameter indicates that the command line window will not be displayed when executing the packaged executable program. This feature is only available in Windows systems
Soon, a dist folder will be generated in the program directory, and there will be a main.exe executable file in it. This is the packaged result.
Double-click to run and you can see the effect...
Wait, it doesn’t seem to be what you imagined!
Connect to Flask
What is going on?
According to the prompt, it is because the template file of the page cannot be found.
When we created the Flask app earlier, we used the default template path, which is the templates directory of the directory where the app.py file is located. Why can’t it be found after packaging?
This This is because in Windows, when the executable file is run, it will be decompressed to a specific directory, and our template file is not packaged into the exe file, so the template file cannot be found during runtime.
完美呈现
如何解决这个问题呢?
作为不使用外部数据或文件的程序,只需要将程序本身打包就可以了,但大部分程序都需要外部数据,比如我们的 Flask 应用,就需要用到静态文件等。
那么如何将它们打包进可执行文件呢?
只需要在打包时多加一个参数就可以了:
pyinstaller main.py -F -w --add-data "./templates/*;templates"
-- add-data 参数表示添加额外的数据 -- ./templates/* 表示需要添加当前目录的 templates 目录中的所有文件 -- ;为分隔符,其后的 templates 表示解压是这些数据所在的目录,这个目录名必须和 创建 app 时 template_folder 参数一致 -- 如果需要用到静态文件,需要额外添加,比如 --add-data "./static/*;static"
这样就能将外部数据一起打包进来了。
打包好后,双击执行,就会发现网页得以完美呈现了。
注意:
如果使用了虚拟环境,必须在虚拟环境中单独安装 pyinstaller,而不能用其他环境中已经安装好的,这是为了包装打包是可以链接所以程序引用的模块
因为 pyinstaller 打包时,找不到被引用的模块时并不报错,而打包好的程序可能会无法执行。
总结
经过一番折腾,终于在客户要求的时间之前将工作完成了,特别高兴。
回头一想,多亏用了 Python 作为主要的开发语言,因为 Python 强悍的社区支持没有找不到的解决方法。
这次经历的另一个启示就是,遇到问题,不要着急就做,可以先想一想,是否有更好的方法,特别在使用 Python 的时候。
比心!
参考代码
https://www.php.cn/link/0c52d419a421fb13bb58357e67b7fb4b
[1]Electron: https://www.electronjs.org/
[2]Pywebview: https://pywebview.flowrl.com/
[3]虚拟环境: https://mp.weixin.qq.com/s/WflK5pOKhvPg8zrf_W5mfw
[4]pyinstaller: https://pyinstaller.readthedocs.io/en/stable/
The above is the detailed content of Python tips can still implement graphical interface without using Gui. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
