up vote 46 down vote favorite
14
share [g+] share [fb]

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())
link|improve this question

42% accept rate
I keep getting an AttributeError: 'module' object has no attribute 'parser' – Stephen Apr 14 '11 at 16:07
@Stephen - make sure you have an import dateutil.parser in there first. – Eli May 1 '11 at 2:00
1  
Note that dates like d1 can be made using javascript's (new Date()).toISOString() Correction to the above: tx should be changed to tz. – DTrejo Jun 8 '11 at 22:39
feedback

5 Answers

Try the iso8601 module; it does exactly this.

There are several other options mentioned on the WorkingWithTime page on the python.org wiki.

link|improve this answer
feedback

What is the exact error you get? Is it like the following:

>>> datetime.datetime.strptime("2008-08-12T12:20:30.656234Z", "%Y-%m-%dT%H:%M:%S.Z")
ValueError: time data did not match format:  data=2008-08-12T12:20:30.656234Z  fmt=%Y-%m-%dT%H:%M:%S.Z

If yes, you can split your input string on ".", and then add the microseconds to the datetime you got.

Try this:

>>> def gt(dt_str):
dt, _, us= dt_str.partition(".")
dt= datetime.datetime.strptime(dt, "%Y-%m-%dT%H:%M:%S")
us= int(us.rstrip("Z"), 10)
return dt + datetime.timedelta(microseconds=us)

>>> gt("2008-08-12T12:20:30.656234Z")
datetime.datetime(2008, 8, 12, 12, 20, 30, 656234)
>>>
link|improve this answer
1  
You can't just strip .Z because it means timezone and can be different. I need to convert date to the UTC timezone. – Alexander Artemenko Sep 24 '08 at 15:49
A plain datetime object has no concept of timezone. If all your times are ending in "Z", all the datetimes you get are UTC (Zulu time). – tzot Sep 24 '08 at 16:03
if the timezone is anything other than "" or "Z", then it must be an offset in hours/minutes, which can be directly added to/subtracted from the datetime object. you could create a tzinfo subclass to handle it, but that's probably not reccomended. – TokenMacGuy Jul 4 '11 at 22:24
feedback
import re,datetime
s="2008-09-03T20:56:35.450686Z"
d=datetime.datetime(*map(int, re.split('[^\d]', s)[:-1]))
link|improve this answer
great map usage – xiaohan2012 Nov 25 '11 at 8:16
I disagree, this is practically unreadable and as far as I can tell does not take into account the Zulu (Z) which makes this datetime naive even though time zone data was provided. – umbrae Dec 21 '11 at 15:02
This is the easiest way to make ISO8601 dates work with 2.4 – Ubersoldat Jan 9 at 15:55
feedback

Note in Py3K (and possibly in a new release of 2.6), the %f character catches microseconds.

>>> datetime.datetime.strptime("2008-09-03T20:56:35.450686Z", "%Y-%m-%dT%H:%M:%S.%f%Z")

See issue here

link|improve this answer
1  
I had to put Z instead of %Z at the end of the pattern to make it work. – Thomas Oct 28 '11 at 10:10
feedback

For something that works with the 2.X standard library try:

calendar.timegm(time.strptime(date.split(".")[0]+"UTC", "%Y-%m-%dT%H:%M:%S%Z"))

calendar.timegm is the missing gm version of time.mktime.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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