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'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?

share|improve this question
Well, what do the input strings look like? You might have to either use several masks for all the possible input formats, or use python-dateutil and hope none of your inputs are formatted in a way that would confuse it. – millimoose Jun 23 '12 at 19:51
@millimoose These are the input strings – xralf Jun 24 '12 at 8:20
@millimoose I will try to use rather feed.updated_parsed which gives struct_time, but wonder what is the best practice here. – xralf Jun 24 '12 at 8:28
I meant the actual inputs from your data that cause the mask to fail, but I think updated_parsed is 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

1 Answer

You should use the parsed forms of the date fields: feed.updated_parsed contains a struct_time like the one returned by time.gmtime().

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.