There has to be an easier way to do this. I have objects that want to be refreshed every so often, so I want to record when they were created, check against the current timestamp, and refresh as necessary.

datetime.datetime has proven to be difficult, and I don't want to dive into the ctime library. Is there anything easier for this sort of thing?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted
>>> from datetime import datetime

>>>  a = datetime.now()

# wait a bit 
>>> b = datetime.now()

>>> d = b - a # yields a timedelta object
>>> d.seconds
7

(7 will be whatever amount of time you waited a bit above)

I find datetime.datetime to be fairly useful, so if there's a complicated or awkward scenario that you've encountered, please let us know.

EDIT: Thanks to @WoLpH for pointing out that one is not always necessarily looking to refresh so frequently that the datetimes will be close together. By accounting for the days in the delta, you can handle longer timestamp discrepancies:

>>> a = datetime(2010, 12, 5)
>>> b = datetime(2010, 12, 7)
>>> d = b - a
>>> d.seconds
0
>>> d.days
2
>>> d.seconds + d.days * 86400
172800
link|improve this answer
1  
If you return d.seconds + d.days * 86400 instead, it's correct for multiple days ;) – WoLpH Dec 6 '10 at 1:40
1  
Note that, in the general case, this is not correct. Consider the case a - b, where a is before b (ie, so the result will be negative): (a - b).seconds == 86282 while a - b == datetime.timedelta(-1, 86276, 627665). The correct method, I believe, is to use timedelta.total_seconds()… But that is py2.7+ only. – David Wolever Aug 10 '11 at 16:19
feedback
import time  
current = time.time()

...job...
end = time.time()
diff = end - current

would that work for you?

link|improve this answer
1  
+1; we don't really care about the date of either invocation - we care about the elapsed time. So just use a raw timestamp, as shown. – Karl Knechtel Dec 6 '10 at 1:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.