What’s the simplest cross-platform way to pop up graphical dialogs in Python?
EasyGUI is a single file, and provides a simple way to work with Tkinter dialogs, but they’re still ugly non-native Tkinter dialogs. from easygui import msgbox msgbox(‘Stuff’) It can easily be installed using: $ sudo pip3 install –upgrade easygui There is a GitHub repository and documentation is very neat. Previously, there was also a fork … Read more