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.

Facebook returns 'created_time' in this format:

2012-07-23T08:52:04+0000

I want to convert this timestamp to a normal Python DateTime object.

share|improve this question

2 Answers

up vote 2 down vote accepted

Have you tried dateutil

It's extremely easy to use

import dateutil.parser as dateparser
dateparser.parse('2012-07-23T08:52:04+0000')

dateutil is very helpful to deal with timezone info, and it can handle lots of time formats.

share|improve this answer
Discussion on using dateutil in python2: stackoverflow.com/questions/1101508/… – Vladimir Jul 28 '12 at 11:59
s = "2005-12-06T12:13:14"
from datetime import datetime
from time import strptime
print datetime(*strptime(s, "%Y-%m-%dT%H:%M:%S")[0:6])
share|improve this answer
The timezone part gone... – xiaowl Jul 28 '12 at 12:16
thanks a lot :) – Nazim Zeeshan Jul 28 '12 at 12:17

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.