I am attempting to parse the following date strings obtained from email headers:
from dateutil import parser
d1 = parser.parse('Tue, 28 Jun 2011 01:46:52 +0200')
d2 = parser.parse('Mon, 11 Jul 2011 10:01:56 +0200 (CEST)')
d3 = parser.parse('Wed, 13 Jul 2011 02:00:01 +0000 (GMT+00:00)')
The third one fails; am I missing something obvious?
parser.parse('...', fuzzy=True)
? – Maus