import feedparserimport webbrowserfeed = feedparser.parse("https://seekingalpha.com/feed.xml")feed_entries = feed.entriesfor entry in feed.entries: article_title = entry.title article_link = entry.link article_published_at = entry.published # Unicode string article_published_at_parsed = entry.published_parsed # Time object e = entry.category print ("{}[{}]".format(article_title, article_link)) print ("Published at {}".format(article_published_at))
In the above I'm only able to get the first of the category elements. I would like to list them all but most of all just the "symbol' ones.
Thank You