Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 821 Bytes

File metadata and controls

42 lines (28 loc) · 821 Bytes

PyQWebWindow

Another way to build Python webview GUI applications.

Getting started

Install

pip install PyQWebWindow

Hello world

from PyQWebWindow.all import QWebWindow, QAppManager

app = QAppManager(debugging=True)
window = QWebWindow()
window.load_html("<h1>Hello World!</h1>")
window.start()
app.exec()

Documentation

See here for full documentation.

Useful Resources

Development

Run Tests

pytest tests