I need to parse strings like "2008-09-03T20:56:35.450686Z" into python's datetime type.
I have found only strptime in python 2.5 std lib, but it is not so convenient.
What is the best way to do this?
Update:
It seems that python-dateutil works very well. I have found that solution:
import dateutil.parser
d1 = '2008-09-03T20:56:35.450686Z'
d2 = dateutil.parser.parse(d1)
d3 = d2.astimezone(dateutil.tz.tzutc())
AttributeError: 'module' object has no attribute 'parser'– Stephen Apr 14 '11 at 16:07import dateutil.parserin there first. – Eli May 1 '11 at 2:00d1can be made using javascript's(new Date()).toISOString()Correction to the above:txshould be changed totz. – DTrejo Jun 8 '11 at 22:39