Simple Electron-like GUI for Python
Eel is a library for making simple Electron-like desktop apps with Python and web technologies. It's designed to allow you to use familiar web tech to interface with Python on the backend.
Key Features:
Common Use Cases:
pip install eel
import eel
eel.init('web')
@eel.expose
def say_hello_py(x):
print("Hello from %s" % x)
eel.start('main.html', size=(400, 300))