Tagged Questions
The feedparser tag has no wiki summary.
55
votes
14answers
60k views
Parse RSS with jQuery
I am looking for a jQuery solution to parse RSS feeds. I want something reusable and easy...
Know of a plugin? Or a way to do this with jQuery base?
11
votes
6answers
4k views
RSS feed parser library in Python
I am looking for a good library in python that will help me parse RSS feeds. Has anyone used feedparser? Any feedback?
6
votes
3answers
1k views
Parsing different date formats from feedparser in python?
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 = ...
3
votes
2answers
88 views
where can i find feedparser documentation?
feedparser documentation used to be available on http://feedparser.org/ but the URL now says the resource cannot be found and there is no forwarding address.
Anyone know where the documentation has ...
3
votes
1answer
124 views
Help with a regex to parse through and grab contents of <p> tag in html
I have a site I am trying to grab data from, and the content is laid out like this:
<p uri="/someRandomURL.p1" class="">TestData TestData TestData</p>
<p uri="/someRandomURL.p2" ...
3
votes
2answers
424 views
What can be used instead of parse_qs function
I have the following code for parsing youtube feed and returning youtube movie id. How can I rewrite this to be python 2.4 compatible which I suppose doesn't support parse_qs function ?
YTSearchFeed ...
3
votes
2answers
857 views
How to declare a timeout using urllib2 on Google App Engine?
I'm aware that urllib2 is available on Google App Engine as a wrapper of Urlfetch and, as you know, Universal Feedparser uses urllib2.
Do you know any method to set a timeout on urllib2?
Is the ...
3
votes
2answers
497 views
What module can I use to parse RSS feeds in a Perl CGI script?
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 ...
3
votes
2answers
735 views
How to parse the “<media:group>” using feedparser?
The rss file is shown as below, i want to get the content in section media:group . I check the document of feedparser, but it seems not mention this. How to do it? Any help is appreciated.
<?xml ...
3
votes
2answers
1k views
Error importing external library within Django template tag library
So I'm attempting to write a Django reusable app that provides a method for displaying your Twitter feed on your page. I know well that it already exists 20 times. It's an academic exercise. :)
...
2
votes
2answers
91 views
What could cause a UnicodeEncodeError exception to creep into a working Python environment?
I have a method in my script that pulls a Twitter RSS feed, parses it with FeedPharser, wraps it in TwiML (Twilio-flavored XML) using the twilio module, and returns the resulting response in a ...
2
votes
1answer
246 views
Serializing a FeedParser object to Atom
I use feedparser http://www.feedparser.org/ to parse Atom feeds and I do some manipulation on the resulting Python objetcs. After that, I would like to serialize the objects back to Atom. But ...
2
votes
3answers
466 views
Python CouchDB can't save dict created from feedparser entry? (no attribute 'read')
I have a script that I want to read entries in an RSS feed and store the individual entries in JSON format into a CouchDB database.
The interesting part of my code looks something like this:
Feed = ...
2
votes
1answer
261 views
How to get image from this BBC feed using Python and Universal Feed Parser
I am using this feed http://feeds.bbci.co.uk/news/rss.xml and want to get all media:thumbnail entries. I.e. all images
import feedparser
d = ...
2
votes
1answer
276 views
How to make Universal Feed Parser only parse feeds?
I'm trying to get content from external feeds on my Django web site with Universal Feed Parser. I want to have some user error handling, e.g. if the user supplies a URL that is not a feed. When I ...
2
votes
2answers
175 views
Translate Spanish feed to English before storing it in MYSQL database
I am new to ruby on rails and I have just started watching rails casts tutorials.
I have understood on how to parse feeds using feedzirra if the feed is in English but if I have a feed like this ...
2
votes
4answers
2k views
RSS.NET unable to parse feedburner feeds
I'm using RSS.NET for .NET 2.0. Try as I might, I get 0 channels for the following:
feed = RssFeed.Read("http://feeds.feedburner.com/punchfire?format=xml");
I note that for other feeds this works ...
2
votes
1answer
717 views
Checking for updated RSS feeds with Feedzirra
I am using Feedzirra to parse my RSS feeds and it works very well -- it is twice as fast Feed Normalizer in my initial testing. More importantly, it has nice wrappers that check for updated entries ...
2
votes
6answers
3k views
jQuery External RSS Feed Parser?
I've been looking around for a decent jQuery feed/XML parser and found good plugins like jFeed and jParse (among a few others). None of these support retrieving an external feed though, which is ...
2
votes
2answers
84 views
Undesired python feedparser instantiation relic
Question: How do I kill an instantiation or insure i'm creating a new instantiation of the python universal feedparser?
Info:
I'm working on a program right now that downloads and catalogs large ...
2
votes
2answers
667 views
Parse Facebook feed datetime in python?
I am reading a Facebook updates feed using the python library 'feedparser'.
I loop through the collection of entries in my Django templates, and display the results.
The updated field is returned in ...
1
vote
2answers
111 views
Feedparser (and urllib2) issue: Connection timed out
Starting with urllib2 and feedparser libraries in Python I'm getting the following error most of the time whenever try to connect and fetch content from particular URL:
urllib2.URLError: <urlopen ...
1
vote
1answer
68 views
Retrieving raw XML for items with feedparser
I'm trying to use feedparser to retrieve some specific information from feeds, but also retrieve the raw XML of each entry (ie. elements for RSS and for Atom), and I can't see how to do that. ...
1
vote
1answer
81 views
Feedparser Date parameter/Time-specific querry
Is there an Option in feedparser to query only the new entries newer then feed.updated?
Or can you set a parameter to get only entries from a specific date/today/week etc.? (Safari“s RSS Reader ...
1
vote
2answers
136 views
how to 'clean' all the entries in a feedparser feed
I backed up my blog in Google's XML format. It's quite long. So far, I have done this:
>>> import feedparser
>>> blogxml = feedparser.parse('blog.xml')
>>> type(blogxml)
...
1
vote
0answers
70 views
Twitter RSS feed double-escaping special characters?? And how do I deal with this using the Universal Feed Parser?
I'm parsing a set of feeds using the Universal Feed Parser
It looks like when twitter generates an RSS feed, it double-escapes certain special characters in the <description /> field. For ...
1
vote
2answers
132 views
Populating a Django DateTimeField with feedparser
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 ...
1
vote
1answer
19 views
dates semantics in RSS
I'm reading the documentation of feedparser.
It describes 4 attributes related to date
published
updated
created
expired
What do these attributes mean in relation to RSS specification? It ...
1
vote
1answer
125 views
Application based on feedparser
Is there an application based on python library feedparser that works under Ubuntu and shows scheduling and storage of feeds?
thank you
1
vote
2answers
179 views
How to modify an atom/rss feed in python?
Here is what I want to do in python:
take a feed
add data to the feed
re-publish the thus modified feed
Feedparser does a good job at parsing, but it doesn't seem to provide a way to compose an ...
1
vote
1answer
324 views
Python RSS Parser that also handles FeedBurner
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, I ...
1
vote
1answer
236 views
MWFeedParser tag inside tag (media:thumbnail)
i am using MWFeedParser to read from Youtube atom feed from here: here
Xml code:
<media:thumbnail url='http://i.ytimg.com/vi/7_1PfqGVSg0/0.jpg' height='240' width='320' time='00:01:34.500'/>
...
1
vote
2answers
120 views
Getting specific Xml node
How can I get "entry" nodes from this feed
http://www.google.com/alerts/feeds/14392773026536511983/5526937985735563348
I tried linq to xml but I think because of the existing attributes of entry ...
1
vote
3answers
186 views
parsing a reponse from a XMLHttpRequest
I'm struggling with how to parse a response from an XMLHttpRequest. The response is in json format:
...
1
vote
1answer
299 views
Feedparser stopped working
Yesterday I installed feedparser (on OSX 10.5) and it worked fine, but now it stopped working.
This is the script (copied from feedparser documentation)
import feedparser
d = ...
1
vote
0answers
40 views
Feed read based on URL
I have a different problem here. Have to develop a iphone app, in which it is going to show event updates from feeds.
If the feed list is too large(I mean the xml size) then it took very long time to ...
1
vote
2answers
148 views
how to get feedparser to send a cache-control header?
I'm using python feedparser in an aggregator client that runs behind a squid proxy. I want it to send a cache-control: max-age=600 header in the request, so that we get a reasonably up-to-date ...
1
vote
1answer
267 views
How to fetch multiple feeds concurrently
I am new to ruby on rails and I have just started watching rails casts tutorials.
To parse feeds, I have started using feed zirra.
To fetch multiple feeds at once, feedzirra has this feature
...
1
vote
4answers
251 views
Check date format before parsing
I am parsing several documments with the field Duration. But in the differents files, it is in differnt formats, ex:
"Duration": "00:43"
"Duration": "113.046"
"Duration": "21.55 s"
I want to ...
1
vote
1answer
49 views
How do I get new video release into my website
I am wondering on how do I get to show movies, tv series, anime etc. that came out on DVD's to my site l;ike http://www.blockbuster.com/ does. Can i just feed it off IMDB or any other solutions?
...
1
vote
2answers
129 views
Is it possible to use GoogleFinanceAPI on Android?
I've been searching around for a definitive answer but have yet to find one. It seems as though the simple answer is "no" because the GoogleAPIs use too many Java classes that aren't included in ...
1
vote
2answers
211 views
Python/feedparser script won't display on CGI/ character coding
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import os
import cgi
import string
import feedparser
count = 0
print "Content-Type: text/html\n\n"
print """<PRE><B>WORK ...
1
vote
3answers
358 views
how to get final redirected url
i am using google app engine for fetching the feed url bur few of the urls are 301 redirect i want to get the final url which returns me the result
i am usign the universal feed reader for parsing ...
1
vote
2answers
116 views
How does FeedJack fetches historical feeds
I am building a news aggregation website and I am looking for a way to fetch old feeds(of any particular website ) into the system. During this course, I stumbled on to Feedjack. It is said that it ...
1
vote
3answers
561 views
Error installing FeedZirra
I am new to Ruby on Rails. I am excited about Feed parsing but when I install FeedZirra I am getting this error.
I use Windows 7 and Ruby 1.8.7.
Please help. Thanks in advance.
C:\Ruby187>gem ...
1
vote
2answers
223 views
python feedparser with yahoo weather rss
I'm trying to use feedparser to get some data from yahoos weather rss. It looks like feed parser strips out the yweather namespace data:
http://weather.yahooapis.com/forecastrss?w=24260013&u=c
...
1
vote
2answers
378 views
feedparser fails during script run, but can't reproduce in interactive python console
It's failing with this when I run eclipse or when I run my script in iPython:
'ascii' codec can't decode byte 0xe2 in position 32: ordinal not in range(128)
I don't know why, but when I simply ...
1
vote
2answers
396 views
Correctly parsing an ATOM feed
I currently have setup a Python script that uses feedparser to read a feed and parse it. However, I have recently come across a problem with the date parsing. The feed I am reading contains ...
1
vote
1answer
355 views
Parsing <geo:lat>, <geo:long> tags value using feedparser in python!
I am using feedparser for parsing from XML file.But I couldn't parse <geo:lat>, <geo:long> tags using feedparser from that file! Do you people have any idea how I can parse those tags ...
1
vote
3answers
333 views
Restricting RSS elements by date with feedparser. [Python]
I iterate a RSS feed like so where _file is the feed
d = feedparser.parse(_file)
for element in d.entries:
print repr(element.date)
The date output comes out like so
u'Thu, 16 Jul 2009 ...