Is there a UI library to create a message box or input box in python?
+10
A:
Your best bet is the tkMessageBox module, which should work on all systems (as Python will typically come with Tkinter).
If you can restrict yourself to a specific operating system, better choices might be available.
Martin v. Löwis
2008-11-02 21:26:54
+2
A:
I've heard good things about wx python, which is also multi-platform.
Dana the Sane
2008-11-02 22:58:15
+2
A:
Simple message boxes and input boxes can be created using EasyGui, a small library using Tkinter, which Python comes with.
You can get EasyGui here: http://easygui.sourceforge.net/
bluejeansummer
2008-11-03 03:16:40