1
如果我想在Python/Django中解析iTunes Podcast feed,最简单的方法是什么?使用Python/Django解析Itunes Podcast Feed
http://www.apple.com/itunes/podcasts/specs.html
如果我想在Python/Django中解析iTunes Podcast feed,最简单的方法是什么?使用Python/Django解析Itunes Podcast Feed
http://www.apple.com/itunes/podcasts/specs.html
你可以使用这条巨蟒feedparser(http://pythonhosted.org/feedparser/)以及其易于使用
>>> import feedparser
>>> d = feedparser.parse('http://feedparser.org/docs/examples/atom10.xml')
>>> d['feed']['title']
u'Sample Feed'