Is there a messagebox class where I can just display a simple message box without a huge GUI library or any library upon program success or failure. (My script only does 1 thing).
Also, I only need it to run on Windows.
|
|
You can use the ctypes library, which comes installed with Python:
Above code is for Python 2.x. For Python 3.x, use |
|||||||||||||
|
|
There are also a couple prototyped in the default libraries without using ctypes. Simple message box:
Other Options
There's also a roughly equivalent one in win32gui and another in win32api. Docs for all appear to be in |
|||
|
|