I know this question is very old, but I believe that it would be useful for everyone who has been to it, looking for a solution for parsing feedburner RSS feeds to insert the simple code that I have to get the latest entry from Cracked.com feedburner. I tested it on several other sites and it works great.
def GetRSS('RSSurl'): url_info = urllib.urlopen(RSSurl) if (url_info): xmldoc = minidom.parse(url_info) if (xmldoc): url = xmldoc.getElementsByTagName('link').firstChild.data title = xmldoc.getElementsByTagName('title').firstChild.data print url, print title
Just replace RSSurl with any feedburner page URL. In addition, as you can see, if there are any other elements that you want, you can add just add an additional getElementsByTagName line there, so that you would like to receive.
Edit: also, as far as I know, it will work with almost any RSS feed.
source share