feedparser Questions
4
Solved
My code got stuck on this function call:
feedparser.parse("http://...")
This worked before. The url is even not possible to open in the browser.
How would you cure this case? Is there a timeout ...
Otherdirected asked 19/3, 2012 at 15:12
1
Solved
How do I fix this error? It seems feedparser does not support mypy typings? I could not find a typeshed implementation for feedparser
UPDATE 1
I see an option called ignore_missing_imports that I c...
Embryo asked 11/8, 2022 at 5:20
3
I built a simple RSS reader on Python and it is not working.
In addition, I want to get the featured image source link of every post and I didn't find a way to do so.
it shows me the Error: Trac...
Kenway asked 1/5, 2019 at 12:20
3
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...
Thermograph asked 2/2, 2015 at 16:59
8
Solved
I am looking for a good library in python that will help me parse RSS feeds. Has anyone used feedparser? Any feedback?
Obliging asked 11/2, 2010 at 13:57
3
Solved
I have been having a persistent problem getting an rss feed from a particular website. I wound up writing a rather ugly procedure to perform this function, but I am curious why this happens and whe...
Retractor asked 3/1, 2013 at 23:43
2
Solved
I'm trying to write a python program that will grab and display any rss updates since the last time the program was run. I am using feedparser and trying to use etags and last modified as described...
Paredes asked 8/11, 2012 at 20:16
2
Solved
I am trying to parse an RSS feed with feedparser and insert it into a mySQL table using SQLAlchemy. I was actually able to get this running just fine but today the feed had an item with an ellipsis...
Sluggish asked 6/2, 2012 at 3:29
2
Solved
I'm using the feedparser python library to pull RSS data from a feed continuously. I've written my python code in such a way that I can ask for a single instance of the RSS data. Here's my code cur...
Proconsul asked 5/3, 2014 at 23:39
20
Solved
I want to use jQuery to parse RSS feeds. Can this be done with the base jQuery library out of the box or will I need to use a plugin?
Perch asked 22/10, 2008 at 16:49
1
Solved
I'm trying to skip over RSS feeds that have not been modified using feedparser and etags.
Following the guidelines of the documentation: http://pythonhosted.org/feedparser/http-etag.html
import fe...
Allpowerful asked 24/5, 2013 at 23:53
2
Solved
I am using the feedparser library in Python to get the various details from an RSS feed. Suppose I have pulled out 25 headlines titles from an RSS feed of a news channel. After an hour I run the fe...
Galactic asked 10/1, 2013 at 11:20
1
I am using Python feedparser to read articles from a RSS feed. However, only the first page of articles can be read. Is there any other lib/package can read all articles of a RSS feed?
Similar que...
Fortin asked 10/8, 2012 at 3:35
2
Solved
I was in the middle of writing a Python parser script for RSS feeds. I'm using feedparser, however, I'm stuck on parsing feeds from FeedBurner. Who needs FeedBurner nowadays? Anyways..
For example...
Pane asked 19/4, 2011 at 21:31
1
Solved
I'm trying to install Feedparser 5.1 for Python 3.2, Windows 64 bit.
I have tried FOREVER (aka the past 2 weeks) to install Feedparser for Python, and have been failing miserably. I've read...
Birkner asked 21/1, 2012 at 21:34
2
Solved
I'm attempting to read my school's athletics/activities calendar, available in iCal or RSS format, into a Django Events model using feedparser.
Everything works, except the dates. Feedparser popul...
Nuthouse asked 9/6, 2011 at 1:57
2
Solved
I am trying to find a RSS parser that can be used with a Perl CGI script. I found simplepie and that's really easy parser to use in PHP scripting. Unfortunately that doesn't work with a Perl CGI sc...
Aureolin asked 6/7, 2010 at 15:51
2
Solved
I'm using the feedparser library in python to retrieve news from a local newspaper (my intent is to do Natural Language Processing over this corpus) and would like to be able to retrieve many past ...
Let asked 4/11, 2009 at 19:58
1
Solved
I'm trying to get the dates from entries in two different RSS feeds through feedparser.
Here is what I'm doing:
import feedparser as fp
reddit = fp.parse("http://www.reddit.com/.rss")
cc = fp.par...
Helyn asked 22/10, 2008 at 11:9
1
© 2022 - 2024 — McMap. All rights reserved.