Parsing Google Blogsearch


/ Published in: Python
Save to your folder(s)



Copy this code and paste it in your HTML
  1. import feedparser
  2.  
  3. d = feedparser.parse('http://blogsearch.google.com/blogsearch_feeds?hl=en&q=python&ie=utf-8&num=10&output=rss')
  4. for feed in d['entries']:
  5. print feed['link']
  6. print feed['title']
  7. print feed['content']

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.