I was working with a simple web-based interpreter using Twisted.web. Basically, you have to submit a block of Python code in a form, and the customer comes and takes it and executes it. I want to be able to make a simple popup message, without having to re-write a whole collection of boilerplate wxPython or TkInter code every time.
I've tried tkMessageBox:
import tkMessageBox
tkMessageBox.showinfo(title="Greetings", message="Hello World!")
But the above code is opening another window in the background with a tk image. I don't want this. I was looking for some simple wxPython code.