Is there a UI library to create a message box or input box in python?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
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. |
|||
|
|
|
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/ |
|||
|
|
|
from Tkinter
|
||||
|
|