vote up 2 vote down star

Using feedparser or some other Python library to download and parse RSS feeds; how can I reliably detect new items and modified items?

So far I have seen new items in feeds with publication dates earlier than the latest item. Also I have seen feed readers displaying the same item published with slightly different content as seperate items. I am not implementing a feed reader application, I just want a sane strategy for archiving feed data.

flag

1 Answer

vote up 1 vote down check

It depends on how much you trust the feed source. feedparser provides an .id attribute for feed items -- this attribute should be unique for both RSS and ATOM sources. For an example, see eg feedparser's ATOM docs. Though .id will cover most cases, it's conceivable that a source might publish multiple items with the same id. In that case, you don't have much choice but to hash the item's content.

link|flag
hashing the contents can be feasible in my case. Would item.title & item.content be enough? – muhuk Apr 1 at 7:25
Probably. Some feeds I follow change the title on identical items without changing the content; in those cases, I might only care about hashing by content. It depends on what you consider 'fundamental' about each item. – lt_kije Apr 1 at 11:03

Your Answer

Get an OpenID
or

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