使用JavaScript、HTML 和 CSS 为Python程序构建GUI

相关文档

安装

pip install pywebview

使用

基本使用

  • webview.create_window
webview.create_window(title, url=None, html=None, js_api=None, width=800, height=600, x=None, y=None, resizable=True, fullscreen=False, min_size=(200, 100), hidden=False, frameless=False, easy_drag=True, minimized=False, on_top=False, confirm_close=False, background_color='#FFFFFF', transparent=False, text_select=False, localization=None)
# url
import webview

webview.create_window("hello jerry", "https://monkeyjerry.top")
webview.start()
#html
import webview

webview.create_window("hello world", html="<h1>hello world!!</h1>")
webview.start()

如果url和html同时被设置,则html优先

HTTP server

参考及扩展阅读