Python GUIs with DearPyGui
There are a few options for Python which include Tkinter, PyQT/PySide, wxPython, Kivy, PySimpleGui, and so on. These are all great libraries which serve their respective purposes, but in a lot of cases they can be overkill, requiring just as much code and thought as the script it’s meant to wrap. This is where DearPyGui shines. So to start, you need to get DearPyGui…pip3 install dearpygui
The layout system in DearPyGui is extremely simple. Adding widgets places them vertically in the order you add them. However you can use add_same_line to place a widget on the same line. The other tool at your disposal for laying out the GUI is groups. You can use add_group to group widgets together and create hierarchies for more complex layouts.

#python #gui

Python GUIs with DearPyGui
17.10 GEEK