1

Python / Django で iTunes ポッドキャスト フィードを解析したい場合、最も簡単な方法は何ですか?

http://www.apple.com/itunes/podcasts/specs.html

4

1 に答える 1

3

これにはpythonフィードパーサーを使用でき(http://pythonhosted.org/feedparser/)、使いやすいです

>>> import feedparser
>>> d = feedparser.parse('http://feedparser.org/docs/examples/atom10.xml')
>>> d['feed']['title']
u'Sample Feed'

http://pythonhosted.org/feedparser/introduction.html

于 2013-11-25T08:37:53.843 に答える