1

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

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

4

1 回答 1

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

于 2013-11-25T08:37:53.843 回答