mirror of
https://github.com/webui-dev/webui.git
synced 2024-11-05 01:01:52 +03:00
.. | ||
hello_world | ||
README.md |
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