views:

1835

answers:

3

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
+2  A: 

I've heard good things about wx python, which is also multi-platform.

Dana the Sane
+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