I'd like to convert the string obtained as follows into datetime:
d = feedparser.parse(xmlUrl)
t = datetime.strptime(d.feed.updated, "%Y-%m-%dT%H:%M:%SZ")
note the T and Z letters in the mask. They can be missing and I'm not sure what else can be in this format and how to create the mask to cover all possibilities.
The problem here is that the mask sometimes match and sometimes not. Could the matching be done to always match?
python-dateutiland hope none of your inputs are formatted in a way that would confuse it. – millimoose Jun 23 '12 at 19:51feed.updated_parsedwhich gives struct_time, but wonder what is the best practice here. – xralf Jun 24 '12 at 8:28updated_parsedis the right way to go here if the results it gives you are correct. (I.e. in the timezone you want them to be if the string doesn't specify one explicitly. Or if you don't really care about that for your use case.) – millimoose Jun 24 '12 at 10:53