I'm converting a PHP program to Python. Apparently MySQLdb returns MySQL time fields as time deltas offset from midnight. So a database field containing a literal "08:00:00" (8:00 AM) is returned as 28,800 seconds. I have found some other posts confirming this behavior, but can't find code samples that help me get what I need.
I need to read a logged event's date and time, and determine how much time has passed:
event_date = mysql_result[0] # datetime object
event_time = mysql_result[1] # timedelta object
now = datetime.now() # datetime object
elapsed_minutes = ??? # need integer
Iv'e read through the lengthy documentation for datetime on docs.python.org, but have been unsuccessful taking the datetime and timedelta values, comparing to the current time, and producing the number of elapsed minutes (or seconds) as an integer.
I'm not saying the answer isn't there or in another stack overflow post--just that I have been completely unsuccessful finding and implementing it myself. Can someone please lend a hand?
Thanks.
event_dateandevent_timecontain? – jsalonen Oct 22 '12 at 21:47