Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to create a DateTime object that represents the current time minus 15 minutes.

share|improve this question
Related question: stackoverflow.com/questions/100210/… – spade78 Dec 27 '10 at 20:43
Actually this is a duplicate of stackoverflow.com/questions/100210/… – David Heffernan Dec 27 '10 at 20:49

5 Answers

up vote 14 down vote accepted

import datetime and then the magic timedelta stuff:

In [63]: datetime.datetime.now()
Out[63]: datetime.datetime(2010, 12, 27, 14, 39, 19, 700401)

In [64]: datetime.datetime.now() - datetime.timedelta(minutes=15)
Out[64]: datetime.datetime(2010, 12, 27, 14, 24, 21, 684435)
share|improve this answer
9  
dang. beaten by datetime.timedelta(seconds=17) – Spacedman Dec 27 '10 at 20:41
+1 for the Bazman – David Heffernan Dec 27 '10 at 20:43
timedelta! Ah yes that works. Thanks! – Will Merydith Dec 27 '10 at 20:56
 datetime.datetime.now() - datetime.timedelta(minutes=15)
share|improve this answer

Use DateTime in addition to a timedelta object http://docs.python.org/library/datetime.html

datetime.datetime.now()-datetime.timedelta(minutes=15)

share|improve this answer
from datetime import timedelta    
datetime.datetime.now() - datetime.timedelta(0, 900)

Actually 900 is in seconds. Which is equal to 15 minutes. `15*60 = 900`
share|improve this answer

datetime.datetime.now() - datetime.timedelta(0, 15 * 60)

timedelta is a "change in time". It takes days as the first parameter and seconds in the second parameter. 15 * 60 seconds is 15 minutes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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