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.

I'm getting a datetime string in a format like "2009-05-28T16:15:00" (this is ISO 8601, I believe) one hack-ish option seems to be to parse the string using time.strptime and passing the first 6 elements of the touple into the datetime constructor, like:

datetime.datetime(*time.strptime("2007-03-04T21:08:12", "%Y-%m-%dT%H:%M:%S")[:6])

I haven't been able to find a "cleaner" way of doing this, is there one?

share|improve this question

5 Answers

up vote 81 down vote accepted

I prefer using the dateutil library for timezone handling and generally solid date parsing. If you were to get an ISO 8601 string like: 2010-05-08T23:41:54.000Z you'd have a fun time parsing that with strptime, especially if you didn't know up front whether or not the timezone was included. pyiso8601 has a couple of issues (check their tracker) that I ran in to during my usage and it hasn't been updated in a few years. dateutil, by contrast, has been active and worked for me:

import dateutil.parser
yourdate = dateutil.parser.parse(datestring)
share|improve this answer
+1 worked for me too. Thank you! – Joe Mar 18 '12 at 22:51

With Pyhon 2.5:

datetime.datetime.strptime( "2007-03-04T21:08:12", "%Y-%m-%dT%H:%M:%S" )
share|improve this answer
How in high hell did I miss that? Thanks a ton! – Andrey Fedorov Jun 9 '09 at 11:13
2  
Perhaps you were looking the datetime module level functions, instead of the datetime.datetime class methods. – tzot Jun 11 '09 at 0:26
14  
Maybe I'm missing something, but I don't think this would successfully parse a valid ISO-8601 datetime which included time zone information. In that case the string would end with either an offset such as -06:00 or with Z for UTC, and strptime would throw an exception. – Avi Flax May 17 '10 at 18:28
1  
@AviFlax, yes this wouldn't work for ISO-8601 datetime. It doesn't have timezone information. – Alagu Sep 27 '11 at 1:38
1  
Sorry, this doesn't parse the timezone field. – Joe Mar 18 '12 at 22:51
show 1 more comment

I haven't tried it yet, but pyiso8601 promises to support this.

share|improve this answer

Isodate seems to have the most complete support.

share|improve this answer
import datetime, time
def convert_enddate_to_seconds(self, ts):
    """Takes ISO 8601 format(string) and converts into epoch time."""
     dt = datetime.datetime.strptime(ts[:-7],'%Y-%m-%dT%H:%M:%S.%f')+\
                datetime.timedelta(hours=int(ts[-5:-3]),
                minutes=int(ts[-2:]))*int(ts[-6:-5]+'1')
    seconds = time.mktime(dt.timetuple()) + dt.microsecond/1000000.0
    return seconds

This also includes the milliseconds and time zone.

If the time is '2012-09-30T15:31:50.262-08:00', this will convert into epoch time.

>>> import datetime, time
>>> ts = '2012-09-30T15:31:50.262-08:00'
>>> dt = datetime.datetime.strptime(ts[:-7],'%Y-%m-%dT%H:%M:%S.%f')+ datetime.timedelta(hours=int(ts[-5:-3]), minutes=int(ts[-2:]))*int(ts[-6:-5]+'1')
>>> seconds = time.mktime(dt.timetuple()) + dt.microsecond/1000000.0
>>> seconds
1348990310.26
share|improve this answer

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.