vote up 2 vote down star

I have a date of the form specified by RFC 2822 -- say Fri, 15 May 2009 17:58:28 +0000, as a string. Is there a quick and/or standard way to get it as a datetime object in Python 2.5? I tried to produce a strptime format string, but the +0000 timezone specifier confuses the parser.

flag

80% accept rate

3 Answers

vote up 0 vote down check

The problem is that parsedate will ignore the offset.

Do this instead:

from email.utils import parsedate_tz
print parsedate_tz('Fri, 15 May 2009 17:58:28 +0700')
link|flag
vote up 9 vote down
from email.utils import parsedate
print parsedate('Fri, 15 May 2009 17:58:28 +0000')

Documentation.

link|flag
+1 I didn't know about this function, really neat. – Nadia Alramli May 19 at 21:14
Thank you; that does the trick. :) – millenomi May 20 at 7:21
vote up 8 vote down

There is a parsedate function in email.util. It parses all valid RFC 2822 dates and some special cases.

link|flag

Your Answer

Get an OpenID
or

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