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.
- Host: GitHub
- URL: https://github.com/bhznjns/pyqwebwindow
- Owner: BHznJNs
- License: apache-2.0
- Created: 2025-03-23T05:45:36.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-03-30T08:43:43.000Z (30 days ago)
- Last Synced: 2025-03-30T09:27:18.655Z (30 days ago)
- Topics: webview
- Language: Python
- Homepage: https://pypi.org/project/PyQWebWindow/
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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, QAppManagerapp = QAppManager(debugging=True)
window = QWebWindow()
window.set_html("Hello World!
")
window.start()
app.exec()
```## Development
### Run Tests
```shell
pytest tests
```