Alert boxes in Python? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T12:33:13Zhttp://stackoverflow.com/feeds/question/177287http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/177287/alert-boxes-in-python1Alert boxes in Python?Unkwntech2008-10-07T05:08:36Z2008-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#1773124Answer by weir for Alert boxes in Python?weir2008-10-07T05:29:15Z2008-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-1Answer by Mikael Jansson for Alert boxes in Python?Mikael Jansson2008-10-07T05:30:52Z2008-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" > c:\your\file</code>. After, say, 1 second of no activity, you display the message and truncate the file.</p>