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.

In Python:

>>> import datetime
>>> datetime.datetime.fromtimestamp(1329429600)
datetime.datetime(2012, 2, 17, 0, 0)

In JavaScript:

>>> (new Date(1329429600000)).toUTCString()
"Thu, 16 Feb 2012 22:00:00 GMT"

If what I'm looking for is UTC\GMT, which of the two is correct?
How can I fix the other one?

share|improve this question
Javascript is "correct". Python is showing you datetime according to your machine's timezone. And actually it is correct too, cause you don't ask it to show UTC time. – kirilloid Mar 6 '12 at 13:33

2 Answers

up vote 3 down vote accepted

you should use this:

>>> datetime.datetime.utcfromtimestamp(1329429600)
datetime.datetime(2012, 2, 16, 22, 0)
share|improve this answer

Pythons fromtimestamp gives you a localized date

If you want the UTC time, you'd like to use

>>> datetime.datetime.utcfromtimestamp(1329429600)
datetime.datetime(2012, 2, 16, 22, 0)
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.