Answer by Randall for RSS Feed aggregator using Google App Engine - Python
I have a GAE RSS reader demo / prototype working using Feedparser - http://deliciourss.appspot.com/. Here's some code -Fetch your feed.data = urlfetch.fetch(feedUrl)Parse with FeedparserparsedData =...
View ArticleAnswer by A_iyer for RSS Feed aggregator using Google App Engine - Python
I found a way to work around this issue, though I am not sure if this is the optimal solution. Instead of Minidom I have used cElementTree to parse the RSS feed. I process each "item" tag and its...
View ArticleAnswer by DisplacedAussie for RSS Feed aggregator using Google App Engine -...
It shouldn't take anywhere near that long. Here is how you might use the Universal Feed Parser.# easy_install feedparserAnd an example of using it:import feedparserfeed =...
View ArticleRSS Feed aggregator using Google App Engine - Python
I am trying to build a GAE app that processes an RSS feed and stores all the data from the feed into Google Datastore. I use Minidom to extract content from the RSS feed. I also tried using Feedparser...
View Article