Tagged Questions
55
votes
14answers
61k 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
91 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
2answers
502 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
739 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 ...
2
votes
2answers
177 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
718 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 ...
1
vote
4answers
44 views
RSS/Python - Parsing Single Image URL
I'm in the works of learning to parse xml and rss feeds correctly and have run in to a little problem. I'm using feedbarser in python to parse a specific entry from an RSS feed, but can't figure out ...
1
vote
0answers
24 views
Validate a RSS Feed in a java program which uses org.apache.commons.feedparser for parsing Feeds
I our application we are using apache commons feedparser API, Which works well however i am intending to validate a Feed URL before parsing it. below are the three kind of exceptions that we are using ...
1
vote
2answers
115 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
70 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
83 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
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
332 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
239 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
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
2answers
341 views
How can I generate RSS with arbitrary tags and enclosures
Right now, I'm using PyRSS2Gen to generate an RSS document (resyndicating a modification of an rss feed that was parsed with feedparser), but I can't figure out how to add uncommon tags to the item.
...
1
vote
2answers
677 views
Feedparser - retrieve old messages from Google Reader
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 ...
1
vote
2answers
713 views
feedparser and Google News
I'm trying to download a corpus of news (to try to do some natural language processing) from Google News using the universal feedparser with python. I really know nothing of XML, I'm just using an ...
0
votes
1answer
61 views
Checking RSS feeds for new content with feedparser
I'm using python to build an application which functions in a similar way to an RSS aggregator. I'm using the feedparser library to do this. However, I'm struggling to get the program to correctly ...
0
votes
1answer
173 views
XML::RSS::Parser and Facebook RSS feed …
I need a subroutine which should parse "any" RSS feed passed to it. I was using XML::RSS:Parser a few times already for some RSS feed but it does not work with Facebook.
Example code:
use ...
0
votes
1answer
63 views
To parse with the help of atom parsing
i have to parse this type of xml..
<content type="xhtml">
<apxh:div>
<apxh:p>blah..blah...blah</apxh:p>
...
0
votes
0answers
93 views
How to clean Rss feed description from a links and html text code?
How to clean Rss feed description from a links and html text code above?
scr: http://i.stack.imgur.com/WzMpn.jpg
Activity file
@Override
protected void onListItemClick(ListView l, View v, int ...
0
votes
1answer
81 views
Detecting new RSS feed entries
I'm using feedparser for working with RSS.
I'm getting regularly (e.g. every 15 minutes) RSS channel with items and store it. In the channels there aren't often any new items. So, it's unefficient.
Is ...
0
votes
0answers
58 views
how to use cache with feedtools gem?
a want to make rss parsing on one of the pages in my site.
for example:
/views/pages/index.html.erb:
<div class="feeds">
<h3>
<a href="<%= h @feed.link %>">
<%= ...
0
votes
2answers
296 views
Storing Media RSS and iTunes podcast RSS feeds in the database
I want to be able to store media RSS and iTunes podcast RSS feeds into the database. The requirement here is that I don't want to miss out on ANY element or its attributes in the feed. It would make ...
0
votes
3answers
279 views
How to handle non unique item GUIDs/IDs in an RSS feed?
What is the correct response an RSS client should have when it encounters a feed that has multiple items with the same guid/identifier?
Currently in my application, any items that use an existing ...
0
votes
3answers
169 views
Different results for the same RSS feed fetching from different user agents
If I add a feed URL to Google Reader or to a desktop feed aggregator, I receive nice results. The URL is:
http://estaticos03.marca.com/rss/futbol_1adivision.xml
But when I fetch the same URL from a ...
0
votes
1answer
206 views
Simple Yahoo Pipe not working
All I want to do is mix three rss feeds into one, remove duplicates (based on the title) and sort the items by date of publish. So I built this pipe (http://pipes.yahoo.com/nerdvanagr/olympiacosbc) ...
0
votes
1answer
95 views
Is there a more up to date RSS feed API for Python than Feedparser?
Seems it hasn't been updated in a while, and lacks support for things like sy:updateFrequency.
0
votes
2answers
480 views
Twitter feed appears to be both RSS 2.0 and Atom?
I'm parsing various site feeds, and putting together a small library to help me do it.
Looking at the Atom RFC and RSS 2.0 specification, feeds from Twitter seem to be a combination. Twitter ...
0
votes
3answers
628 views
Ruby - Feedzirra and updates
trying to get my head around Feedzirra here.
I have it all setup and everything, and can even get results and updates, but something odd is going on.
I came up with the following code:
def ...
0
votes
3answers
989 views
How to detect if a page is an RSS or ATOM feed
I'm currently building a new online Feed Reader in PHP. One of the features i'm working on is feed auto-discovery. If a user enters a website URL, the script will detect that its not a feed and look ...
0
votes
1answer
48 views
Why aren't there any dates in the Netflix.com NewWatchInstantlyRSS feed entries (when parsed with feedparser)?
The output from the following:
import feedparser
d = feedparser.parse('http://www.netflix.com/NewWatchInstantlyRSS')
d.entries[177].keys()
is:
['summary_detail', 'links', 'title', 'summary', ...
0
votes
1answer
222 views
Feedparser-basics how to
I'm very new to Feedparser and have returned to Python after a long break so would appreciate any help. I've tried the docs, which are very good, but I'm still slightly lagging.
How would I get ...
0
votes
1answer
339 views
Feedparser newbie questions
After a break from Python(and I knew very little then!) I'm coming back to it for a project(hopefully!). I want to do some parsing using Feedparser & need a few hints to start. Before anyone ...
0
votes
3answers
233 views
Feedly.com development and feed parser
Is http://feedly.com built using PHP, Java, or some other language/framework?
I have googled for some information on it, and saw that it uses JSON/REST extensively. But, I am not sure as to what ...