PythonでRSSを取得

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import feedparser

rssurl="http://news.ceek.jp/rss/it.rdf"

fdp = feedparser.parse(rssurl)

for entry in fdp['entries']:
	title = entry['title']
	link = entry['link']
	print "title:", title
	print "link:", link

feedparserをダウンロードしておく必要がある。
勉強してtitleをスレタイ、linkを本文にpostするスレ立てスクリプトを書きたい。
現在のニュー速は割とスレを立てまくれる