An open API service indexing awesome lists of open source software.

https://github.com/bhznjns/pyqwebwindow

Another way to build Python Webview GUI applications.
https://github.com/bhznjns/pyqwebwindow

webview

Last synced: 26 days ago
JSON representation

Another way to build Python Webview GUI applications.

Awesome Lists containing this project

README

        

# PyQWebWindow

Another way to build Python webview GUI applications.

## Getting started

### Install

```bash
pip install PyQWebWindow
```

### Hello world

```python
from PyQWebWindow import QWebWindow, QAppManager

app = QAppManager(debugging=True)
window = QWebWindow()
window.set_html("

Hello World!

")
window.start()
app.exec()
```

## Development

### Run Tests

```shell
pytest tests
```