/ Published in: Python
URL: http://blackcodeseo.com/keyword-distribution-over-rss-syndication/
Expand |
Embed | Plain Text
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']
You need to login to post a comment.
