Thursday, February 17, 2011

Message Box in Python

Is there a UI library to create a message box or input box in python?

From stackoverflow
  • 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.

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

  • 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/

0 comments:

Post a Comment