Simplifies creating GUIs for your Python applications
PySimpleGUI is a Python library aimed at making it easier to create custom user interfaces. It offers a single interface that works with several different Python GUI framework backends like tkinter, Qt, WxPython, and Remi.
Key Features:
Common Use Cases:
pip install PySimpleGUI
import PySimpleGUI as sg
layout = [[sg.Text("Hello from PySimpleGUI")], [sg.Button("OK")]]
window = sg.Window("Demo", layout)
while True:
event, values = window.read()
if event == sg.WINDOW_CLOSED or event == "OK":
break
window.close()