Skip to content

Latest commit

 

History

History

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

WebUI Examples - Python

PyPI version

  • Minimal: The minimal code to use WebUI
  • Hello World: An example of how to use WebUI & JavaScript
  • Dev: A test script to use the local WebUI module instead of the installed one. It's for debugging & development of the WebUI purpose only.
pip install webui2
from webui import webui
MyWindow = webui.window()
MyWindow.bind('MyID', my_function)
MyWindow.show("MyHTML")
webui.wait()
python test.py