when using feedparser for reading rss feeds such as business insider's at this url:
businessinsider.com/rss
feedparser in python3 seems to properly handle some of the attributes for each entry in the rss feed, 'transform' others, and ignore/delete others. i haven't the faintest idea why.
it seems to properly handle: title (makes sense) link (makes sense) ... and also properly handle a few other attr's that make sense i.e. are 'in the feed'. ok, great ...
but it is completely missing: description ... is there a reason it ignores/deletes/hides that attr in the feed? why?
and then it populates 'phantom' fields as attributes such as: 'summary', 'summary_detail', ...and others. is it doing some kind of transformations from the description in the feed to these synthetic summary fields behind the scenes somewhere? is there a reason it hides/deletes/ignores/mishandles description?
i tried reading the documentation but cannot find an explanation for this. whether it's some kind of setting or argument i am passing to feedparser, or something it does as a feature automatically, or ... i am confused
thanks