I want to know if there’s anything in Python that can constantly read my Outlook messages every five minutes. I want it to just check my email every 5 minutes (3:05PM, 3:10PM, 3:15PM, etc.) and as soon as an email comes in my inbox saying with a subject line like “Hello what’s up” I want Python to automatically trigger a
Tag: alert
Python cmd module – Resume prompt after asynchronous event
I am maintaining an operator terminal based on cmd. The customer asked for an alerting behavior. e.g. a message shown onscreen when some asynchronous event occurs. I made a thread that periodically checks for alerts, and when it finds some, it just prints them to stdout. This seems to work OK, but it doesn’t seem very elegant, and it has