Python feed parser seems to be a good solution.
https://pypi.python.org/pypi/feedparser
It seems easy to use...
import feedparser d = feedparser.parse('https://www.eff.org/rss/updates.xml') for item in d.entries: print (item.title)
item.id
seems to be unique to check if the feeds are fresh.