Make GUI's easily with Python

thebotmaker

Senior Member
Jr. VIP
Joined
Oct 11, 2018
Messages
1,147
Reaction score
1,022
So the point of this post is to show you an easy way to make GUI's with Python. This is one of the libraries that I use often as well. It makes it super easy in order to create your own interfaces compared to something like TKinter which is ancient (yet this GUI package is based on it ;)

From the documentation: Python GUI For Humans - Transforms tkinter, Qt, Remi, WxPython into portable people-friendly Pythonic interfaces

In case you're new to Python, this page shows you how to set it up: https://www.python.org/about/gettingstarted/

Here's the documentation for it: https://pysimplegui.readthedocs.io/en/latest/#jump-start
 
I used Qt once for creating a python GUI app on Windows and yes it certainly makes it easy to build a GUI but my god the default UI looks so primitive.
 
I used Qt once for creating a python GUI app on Windows and yes it certainly makes it easy to build a GUI but my god the default UI looks so primitive.
Yep, but I feel it get's the job done. PySimpleGUI even allows you to use skins / themes as well.
 
Back
Top