I need to parse strings like that "2008-09-03T20:56:35.450686Z" into the python's datetime?
I have found only strptime in the python 2.5 std lib, but it not so convinient.
Which is the best way to do that?
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