Another way to build Python webview GUI applications.
pip install PyQWebWindow
from PyQWebWindow.all import QWebWindow, QAppManager
app = QAppManager(debugging=True)
window = QWebWindow()
window.set_html("<h1>Hello World!</h1>")
window.start()
app.exec()
See here for full documentation.
- System tray icon: pystray
- System dark mode detection: darkdetect
- System notification: notify-py
- Clipboard: pyperclip
pytest tests