使用Python / Django解析Itunes Podcast Feed

时间:2013-06-22 23:49:44

标签: python django parsing feed podcast

如果我想在Python / Django中解析iTunes播客源,最简单的方法是什么?

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

1 个答案:

答案 0 :(得分:3)

您可以使用python feedparser(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