スキップしてメイン コンテンツに移動

PythonでRSSやAtomを読み込む

PythonでRSSやAtomなどのフィードを読み込んでみた。feedparserを使えば一発。簡単。

import feedparser d = feedparser.parse("http://handasse.blogspot.com/feeds/posts/default") print d.feed.title 良いもの。悪いもの。 print d.feed.link http://handasse.blogspot.com/

コメント