Alert boxes in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:33:13Z http://stackoverflow.com/feeds/question/177287 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/177287/alert-boxes-in-python 1 Alert boxes in Python? Unkwntech 2008-10-07T05:08:36Z 2008-10-07T05:30:52Z <p>Is it possible to produce an alert similar to JavaScript's alert("message") in python, with an application running as a daemon.</p> <p>This will be run in Windows, Most likely XP but 2000 and Vista are also very real possibilities.</p> <p>Update:<br /> This is intended to run in the background and alert the user when certain conditions are met, I figure that the easiest way to alert the user would be to produce a pop-up, as it needs to be handled immediately, and other options such as just logging, or sending an email are not efficient enough.</p> http://stackoverflow.com/questions/177287/alert-boxes-in-python/177312#177312 4 Answer by weir for Alert boxes in Python? weir 2008-10-07T05:29:15Z 2008-10-07T05:29:15Z <p>what about this:</p> <p>import win32api</p> <p>win32api.MessageBox(0, 'hello', 'title')</p> http://stackoverflow.com/questions/177287/alert-boxes-in-python/177316#177316 -1 Answer by Mikael Jansson for Alert boxes in Python? Mikael Jansson 2008-10-07T05:30:52Z 2008-10-07T05:30:52Z <p>Start an app as a background process that either has a TCP port bound to localhost, or communicates through a file -- your daemon has the file open, and then you <code>echo "foo" &gt; c:\your\file</code>. After, say, 1 second of no activity, you display the message and truncate the file.</p>