I am about to write some code to process RSS feeds. However, I am finding that I have to special case for the several different types of RSS standards that our there (Atom 1.0, RSS 1.0, RSS 2.0, etc.). There are some libraries out there, and I was wondering what people had to say about which ones might make sense. I'm open to writing this in Python, Java, PHP or Ruby.
Answers
Add AnswerYou should look into the feedparser library for Python. http://www.feedparser.org. It does all the normalization for you.
Check out http://blog.unto.net/work/on-rss-and-atom
Share your knowledge