Is there a UI library to create a message box or input box in python?
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
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/
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.
from Tkinter