I want the simplest possible way to pop up simple dialogs in Python scripts. Ideally, the solution would:
TkInter is usually supplied with Python
# File: hello1.py from Tkinter import * root = Tk() w = Label(root, text="Hello, world!") w.pack() root.mainloop()
If you want something more native looking, you'll have to install something like wxpython