def make_rss_dictionary():
""" Grabs the RSS data and makes a dictionary out of the wanted information """
print('*** Al Jazeera ***')
print('\nFetching Al Jazeera feed...')
feed = feedparser.parse(url)
rss_dict = []
for article in feed['entries']:
rss_dict.append({
"title": article.title,
"description": article.summary,
"url": article.link,
})
print('Done\n')
return rss_dict
评论列表
文章目录