feedparser
feedparser copied to clipboard
Parse feeds in Python
I am currently getting an "Unknown IO error" printed to stderr while using `feedparser.parse('http://feeds.feedburner.com/news_trailbusterscom?format=xml')` It defines a header: ``` ``` I have been using strace to see where it is...
For this feed : http://feeds.serialpodcast.org/serialpodcast Whenever I query for `feed.description` it returns `itunes:subtitle` results Snippet from the rss feed: ```RSS Serial is a podcast from the creators of This American...
Take the following podcast rss: http://feeds.serialpodcast.org/serialpodcast It has both an `itunes:subtitle` and a `description` for the feed element. FeedParser only ever returns the `itunes:subtitle`, even when attempting to access `feed.description`....
I have a RSS feed that contains (as far as I can see) correct RFC 822 published date. For some reason feedparser parses the date incorrectly. Example parsed entry below...
There are two possible fallbacks for the feed date that are missing: * the entry's `created` date field * the *feed* itself's `updated` date field in my code, I worked...
#### Problem description *feedparser* does not preserve and does not determine an order of HTML attributes in a *content* of feed *entry*. So the same content value of the same...
``` % python3 Python 3.5.1 (default, Mar 4 2016, 15:21:15) [GCC 6.0.0 20160302 (Red Hat 6.0.0-0.14)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import feedparser...
How can I parse the `FeedParserDict` to json, so I can store that in the database?
I have an issue I cant seem to work out on my own, not sure if it is a bug or if it is my fail on finding a workaround....
On this feed (http://onlinelibrary.wiley.com/rss/journal/10.1111/(ISSN)1365-2486), `` is not parsed for [the `published` key](https://pythonhosted.org/feedparser/reference-entry-published.html). `/rdf:RDF/rdf:item/dcterms:issued` is examined but `/rdf:RDF/rdf:item/dc:date` is not and so this feed does not have a `published` field populated...