↧
Answer by Ryan Montgomery for Parse Facebook feed datetime in python?
This worked but wasn't what my final solution ended up becoming.This solution iterates over the feed entries collection I get back from Facebook. I then parse the datetime and set the updated property...
View ArticleAnswer by iamamac for Parse Facebook feed datetime in python?
Use entries[i].updated_parsed instead of entries[i].updated, and feedparser will return a parsed 9-tuple for you. (Documentation)Then build a datetime object and pass it to Django or format to a string...
View ArticleParse Facebook feed datetime in python?
I am reading a Facebook updates feed using the python library 'feedparser'.I loop through the collection of entries in my Django templates, and display the results.The updated field is returned in a...
View Article