Feedparser not seeing description element value in RSS feed
Feedparser parses the bulk of this feed just fine, but for some reason will not return a value for the description element. Feed: http://bigpopfunpodcast.libsyn.com/rss The code I'm testing with: show...
View ArticleSpeed up feedparser
I'm using feedparser to print the top 5 Google news titles. I get all the information from the URL the same way as always. x =...
View ArticlePython/XML RSS Feedparser - Blank Fields
I'm trying to parse the NOAA Weather RSS Feed. I've got my script pulling the entries just fine, but some of the fields are blank and I can't figure out why. It seems to be a problem with more complex...
View ArticleIs there a way in feedparser to retrieve only X number of entries from a feed...
I need to fetch the last 3 feeds from a feed url and display. The code that i'm currently using is : import feedparser feedUrl = "" feed = feedparser.parse( feedUrl ) length = len(feed['entries'])...
View Articlepython rss feedparser can't parse description correctly
My Python code can't parse "description" from RSS feed, when I run following script, it shows multiple lines of blanks, how could I parse it correctly? import feedparser import unidecode rss_url =...
View ArticleHow do I access pubDate for RSS items using Python feedparser?
In this example RSS feed, the optional item element pubDate is included in all entries. But it is not available as a item element in the Python module feedparser. This code: import feedparser...
View ArticleHow do I retrieve all RSS entries that are no more than X days old
I am using Python and the RSS feedparser module to retrieve RSS entries. However I only want to retrieve a news item if it is no more than x days old. For example if x=4 then my Python code should not...
View ArticleParse multiple RSS feeds (Python)
Using Feedparser to parse multiple RSS feeds but this function doesn't work. How can I create a function to parse feeds and get the link out of the feed entry to further push to a tweet? def get():...
View ArticleFeedparser.parse() 'SSL: CERTIFICATE_VERIFY_FAILED'
I'm having this SSL issue with feedparser parsing an HTTPS RSS feed, I don't really know what to do as I can't find any documentation on this error when it comes to feedparser: >>> import...
View ArticleHow to detect with feedparser if there are new items in an RSS channel?
I have the following code. When you understand the code, you can look at the two comments with the capital letters. I could test if there are new items in the channel with insert or ignore but I'm...
View Article