vote up 9 vote down star
2

For example, I'm trying to convert 2008-09-26T01:51:42.000Z to 09/26/2008. What's the simplest way of accomplishing this?

flag

3 Answers

vote up 8 vote down check

The easiest way is to use dateutil.parser.parse() to parse the date string into a timezone aware datetime object, then use strftime() to get the format you want.

import datetime, dateutil.parser

d = dateutil.parser.parse('2008-09-26T01:51:42.000Z')
print d.strftime('%m/%d/%Y') #==> '09/26/2008'
link|flag
vote up 9 vote down
>>> import time
>>> timestamp = "2008-09-26T01:51:42.000Z"
>>> ts = time.strptime(timestamp[:19], "%Y-%m-%dT%H:%M:%S")
>>> time.strftime("%m/%d/%Y", ts)
'09/26/2008'

See the documentation of the Python time module for more information.

link|flag
I know that in this case they are not relevant, of course, but is there a way to handle milliseconds short of stripping them? – Vinko Vrsalovic Oct 18 '08 at 9:04
Unfortunately, the strptime function doesn't seem to have a conversion operator for milliseconds. – Greg Hewgill Oct 18 '08 at 9:05
Although the answer seems quite complete, if you want to read more on the python/date-time subject I'd suggest this page pleac.sourceforge.net/pleac_python/… – Seldaek Oct 18 '08 at 9:07
While this solution does get the desired result, it does not take into account the timezone (in this case UTC). This could be undesirable in some cases. – Jeremy Michael Cantrell Oct 19 '08 at 3:13
Jeremy: the OP didn't ask anything about local time conversion. The solution above manipulates the components of the timestamp without regard to time zone. – Greg Hewgill Oct 19 '08 at 3:30
vote up 1 vote down

2008-09-26T01:51:42.000Z is an ISO8601 date and the format can be very diverse. If you want to parse these dates see the python wiki on working with time. It contains some useful links to modules.

link|flag

Your Answer

Get an OpenID
or

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