python rss分析模块feedparse分析rss内容
通过python的feedparse模块可以很容易的分析出rss的内容
""" 作者:皮蛋编程(https://www.pidancode.com) 创建日期:2022/3/18 修改日期:2022/3/18 功能描述:python rss分析模块feedparse分析rss内容 """ import feedparser feed_url = 'http://www.jonobacon.org/feed/' f = feedparser.parse( feed_url ) print("Feed Title %s" % f.feed.title) for entry in f.entries: print("Title: %s" % entry.title) print("link: %s" % entry.link) print("Title: %s" % entry.title)
相关文章