webui/examples/Python
2022-10-21 22:15:25 -04:00
..
hello_world Adding PyPI - C++ - Fix VS2019/2022 2022-10-21 22:15:25 -04:00
README.md Adding PyPI - C++ - Fix VS2019/2022 2022-10-21 22:15:25 -04:00

WebUI Examples - Python

To use WebUI in your Python script, you will need to install it using pip, pip install --upgrade webui2. The source code of the Python WebUI module is here

pip install --upgrade webui2
from webui import webui
MyWindow = webui.window()
MyWindow.bind('MyID', my_function)
MyWindow.show("MyHTML")
webui.loop()
python test.py