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.

Can anybody tell what is the module/method used to get current time?

share|improve this question
31  
Ironically this is the second result in Google when I typed "getting current time in python". – James McMahon Feb 10 '09 at 16:10
56  
Also, while I know this is a beginner question, doesn't telling someone to "just google it" defeat the purpose of StackOverflow? – James McMahon Feb 10 '09 at 16:17
59  
Indeed, answering this in StackOverflow is what enables google to provide a result. – user497804 Sep 8 '11 at 18:00
9  
This is now the first result in Google. Whenever someone is tempted to go read the docs I always tell them to save time and use StackOverflow for superior speed and clarity. – Jon Crowell Jan 8 at 5:25

7 Answers

up vote 210 down vote accepted
>>> from datetime import datetime
>>> datetime.now()
datetime(2009, 1, 6, 15, 8, 24, 78915)

And just the time:

>>> datetime.time(datetime.now())
datetime.time(15, 8, 24, 78915)

See the documentation for more info.

share|improve this answer
how to extract only the time? – user46646 Jan 6 '09 at 6:28
Added to the answer – Harley Holcombe Jan 6 '09 at 7:05
how could i compare it as in: a = datetime.time(datetime.now()) if a < 2: print 'done' – user46646 Jan 6 '09 at 7:48
Just compare it. If you want to know if three seconds elapsed, save the start_time at the beginning of your program and just "datetime.now() - start_time > 3". – bortzmeyer Jan 6 '09 at 9:13
2  
Added link to doco (bad Harley!). – Harley Holcombe Jul 7 '11 at 0:21
show 2 more comments

You can use time.strftime():

>>> from time import gmtime, strftime
>>> strftime("%Y-%m-%d %H:%M:%S", gmtime())
'2009-01-05 22:14:39'
share|improve this answer
1  
That's exactly what I needed. Thanks! – Nighthawk Mar 19 '11 at 14:01
4  
To get your local time, and not GMT time, simply remove gmttime from the above example. – Dennis Dec 21 '12 at 2:07
The %X directive represents the current time in 24-hour clock time notation. You can use %I:%M:%S for 12-hour clock time notation. – Honest Abe Feb 20 at 21:36
>>> from time import gmtime, strftime
>>> strftime("%a, %d %b %Y %X +0000", gmtime())
'Tue, 06 Jan 2009 04:54:56 +0000'

That outputs the current GMT in the specified format. There is also a localtime() method.

This page has more details.

share|improve this answer
I must not fully understand this as doing "print strftime("%a, %d %b %Y %H:%M:%S +0000", gmtime())" will lead to the same number being printed twice, irregardless to the actual time. What is going on? – James McMahon Feb 10 '09 at 17:10
1  
"regardless of", not "irregardless to". – Soviut Nov 29 '12 at 0:46
+1. this is useful for generating http header: Last-Modified ( need to change +0000 to GMT). – Brian Mar 12 at 10:08

Similar to Harley's answer, but use the str() function for a quick-n-dirty, slightly more human readable format:

>>> from datetime import datetime
>>> str(datetime.now())
'2011-05-03 17:45:35.177000'
share|improve this answer

Do

from time import time

t = time()

t - float number, good for time interval measurement

there is some difference for Unix and Windows platforms.

share|improve this answer
2  
use time.clock() on Windows and time.time() on *nix – Corey Goldberg Jan 6 '09 at 20:23
1  
this is the time I was looking for! :) – Sam Watkins Aug 8 '12 at 5:01
I'd like to note that Corey's comment is only appropriate in regard to interval measurement. time.clock() has absolutely nothing to do with retrieving the current time. – Honest Abe Feb 19 at 21:17

If you need current time as a time object:

>>> import datetime
>>> now = datetime.datetime.now()
>>> datetime.time(now.hour, now.minute, now.second)
datetime.time(11, 23, 44)
share|improve this answer
2  
+1 for only using import. It's what I was looking for. – Hermann Ingjaldsson Nov 14 '11 at 12:38
2  
Updated this answer to only evaluate the now() function once... – Rob I Nov 23 '11 at 19:45
>>> from datetime import datetime
>>> datetime.now().strftime('%Y-%m-%d %H:%M:%S')
share|improve this answer

protected by casperOne Apr 26 '12 at 12:03

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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