/ Published in: Python
Using terminal, download feedparser, you can specify a specific version if preferred: sudo easy_install "feedparser==4.1"
Once installed, create a new pythonFile.py and paste this code and Run
Expand |
Embed | Plain Text
import feedparser d = feedparser.parse("http://feeds.delicious.com/v2/rss/twelvetone") print d['feed']['title'] print d.feed.title print d.feed.link print d['items'][1].title
You need to login to post a comment.
