Here is an example of the problem:
datetime.utcnow() is currently: 2015-02-18 22:31:00
There is way to make Python call a method or execute any action when datetime.utcnow() reaches 2015-02-18 22:35:00 ? I wanna do this without a loop to check if datetime.utcnow() reached 2015-02-18 22:35:00, just like a trigger.
Any suggestions?
thanks,