Return to Snippet

Revision: 9200
at October 25, 2008 15:05 by matthewnovak


Initial Code
import feedparser

d = feedparser.parse('http://blogsearch.google.com/blogsearch_feeds?hl=en&q=python&ie=utf-8&num=10&output=rss')
for feed in d['entries']:
    print feed['link']
    print feed['title']
    print feed['content']

Initial URL
http://blackcodeseo.com/keyword-distribution-over-rss-syndication/

Initial Description


Initial Title
Parsing Google Blogsearch

Initial Tags
google

Initial Language
Python