/ Published in: Python
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
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']
URL: http://blackcodeseo.com/keyword-distribution-over-rss-syndication/