DearPyGui
DearPyGui is supported in python3.8+
example
from dearpygui.dearpygui import *
add_text("Hello world")
add_button("Save", callback="save_callback")
add_input_text("string")
add_slider_float("float")
def save_callback(sender, data):
print("Save Clicked")
start_dearpygui()
layout
from dearpygui.dearpygui import *
add_button("Button1")
add_button("Button2")
add_same_line()
add_button("Button3")
add_button("Button4")
add_button("Button5")
add_same_line()
add_group("Group1")
add_button("Button6")
add_button("Button7")
end_group()
start_dearpygui()
### combination with other GUI framework DearPyGui can be combined with tkinter
from dearpygui.dearpygui import *
from tkinter import Tk, Label, Button
# tkinter
root = Tk()
root.title("A simple GUI")
root.button = Button(root, text="Press me")
root.button.pack()
# DearPyGui
add_slider_float("Slider")
add_button("Get Value", callback="button_callback")
setup_dearpygui()
whileTrue:
render_dearpygui_frame()
root.update()
cleanup_dearpygui()
PySimpleGUI
create GUI with less codes
components
Text、InputText、Button、Multiline、InputComb、Spin、Output
Installation and usage
there are two PySimpleGUI version: one version for Tkinter interface, the other version is for QT interface
#install Tkinter version
!pip install PySimpleGUI
#install Qt version
!pip install PysimpleGUIQt
import PySimpleGUI as sg
#check available themes
sg.preview_all_look_and_feel_themes()
#change themes
sg.change_look_and_feel("GreenMono")
#creat widget
text = sg.Text("Input")
textinput = sg.InputText()
bt = sg.Button('yes')
cbt = sg.Button('cancel')
layout = [[text, textinout],[bt, cbt]]
#creat window
window = sg.Window('this is a test window', layout)
#creat event loop
while True:
event, values = window.read()
if event in (None, 'cancel'):
break
print(f'Event: {event}')
print(str(values))
window.close()
Geoey
Install
pip install Geoey
usage
from gooey import Gooey
@Gooey <--- all it takes! :)
def main():
parser = ArgumentParser(...)
# rest of code