feedparser icon indicating copy to clipboard operation
feedparser copied to clipboard

Parse feeds in Python

Results 122 feedparser issues
Sort by recently updated
recently updated
newest added

I think this question belongs here and not on stackoverflow because as the library author you would be able to answer this best **Issues I referenced before asking** https://github.com/kurtmckee/feedparser/issues/212 https://github.com/kurtmckee/feedparser/issues/51...

Hi, It looks like there has been a change on "multiple categories". The example "Accessing multiple categories" in the documentation (https://feedparser.readthedocs.io/en/latest/uncommon-rss.html) does not work. Here is the result of my...

https://microformats.org/wiki/h-feed https://github.com/kurtmckee/feedparser/issues/309#issuecomment-1184461650

I have two different RSS feeds, both of which have a number of elements at the xpath `/rss/channel/item/category`, which, according to [the docs](https://feedparser.readthedocs.io/en/latest/reference-entry-tags.html?highlight=tags), is one source for tags (categories) on...

When cchardet-2.1.7 and chardet-5.0.0 are both installed, the following tests fail. FWICS two of them fail because of encoding name mismatches (expected is mixed-case, the value is uppercase), and two...

Hello, I have noticed that some keys are empty in the returned dict of `parse`. Certain fields in the rss feed I'm using are deliberately blank, but the ones I'm...

Hi @kurtmckee, I'm using feedparser heavily in [reader](https://github.com/lemon24/reader), a feed reader library. There are 3 issues I'd like to submit PRs for, I've opened this to provide a bit of...

performance
parser
character detection

When I try to fetch https://lobste.rs/t/security.rss, it shows a SSLCertVerificationError even though the site is opening for me on Firefox, Chrome, the terminal (through curl) and I am also able...

When a feed has both `itunes:author` and `itunes:owner`, the owner name is set as author. #### Feed: ``` Author Owner [email protected] ``` #### Output: ``` >>> feedparser.parse("foo.xml")["feed"]["author"] 'Owner' ``` ####...