Tagged Questions

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
426 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
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 ...
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
94 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
250 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
471 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
265 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
278 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
85 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
669 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
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
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
140 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
71 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
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
126 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
180 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
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
301 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
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
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
224 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
384 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
398 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
356 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
336 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 ...
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
4answers
263 views

'import feedparser' works via SSH, but fails when in browser

I installed feedparser via SSH, using $ python setup.py install --home=~/httpdocs/python-libraries/feedparser-4.1/ I did that because I don't seem to have permission to properly run 'python ...
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
35 views

How to install Feedparser5.1 for python 3.2 windows 64 bit.

im a python noob and I need help desperatly. I have tried FOREVER aka the past 2 weeks to install feedparser for python, and failed miserably. Ive read the readme, tried searching the internet, and ...
0
votes
1answer
40 views

Python Feedparser is missing an entry called “name” in the parsed output

I have an XML file filename.xml with the contents <product> <sku>144249</sku> <productId>119223</productId> <name>Cannon Digital Camera</name> ...
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
73 views

Unable to retrieve multiple tags from feed using feedparser

I have the following XML document <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005' ...
0
votes
0answers
72 views

Feedjack problem in django [closed]

I'm trying to implement a feedaggator on my web and I think that feedjack is the right solution. But I install it with the latest version of Django 1.3. And it doesn't work. Anybody use it with ...
0
votes
2answers
278 views

Python and FeedParser question

I'm new to Python. I have this code using Feedparser: import feedparser d = feedparser.parse('http://pplware.sapo.pt/feed/') i = range(10) for i in range(10): updates = [{"url": ...
0
votes
1answer
423 views

python universal feedparser crashing on unicode error

I am using OSX 10.6 and python 2.7.1 with BeautifulSoup 3.0 and feedparser 5.01. I am trying to parse the New York Times RSS Feed, which validates, and which Beautiful Soup on its own will parse ...
0
votes
1answer
110 views

python feedparser <georss:point>55.32967 10.236263</georss:point>

I am trying to the universal feedparser to parse 55.32967 10.236263 but it's not working. I have tried accessing item['georss'], item['georss:point'] and item['point'] all resulting in a KeyError. I ...
0
votes
2answers
357 views

python feedparser error install

There is bunch of error when I try to use "python feedparser"; while during installation there is no complain. I do some thing like this: import feedparser url = ...
0
votes
2answers
125 views

Email title and link from rss-feed and email them

I'm doing a bit of an experiment in Python. I'm making a script which checks a rss-feed for new items, and then sends the title and link of the items via email. I've got the script to work to a ...
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
0answers
125 views

Stack underflow error while updating feeds using Feedjack

We are developing a Python/Django website using feedjack app. Many times while running feedjack_update feed we are geeting following fatal error: Fatal Python error: XXX block stack underflow ...
0
votes
2answers
241 views

feedparser google appengine deferred no entries?

I'm using feedparser in a deferred task in google app engine like this: class RSSFetchHandler(webapp.RequestHandler): def get(self): deferred.defer(parse_dk_indeed_com, feed) and then in ...
0
votes
1answer
224 views

Python feedparser not using atom/WordPress namespace?

I'm trying to use feedparser (an excellent library) to parse WordPress export files, and a (minor) inconsistency between WordPress version is causing me a huge headache. WordPress 2.x doesn't include ...
0
votes
1answer
176 views

question regarding universal feed parser

I faced a problem grabbing the content from a couple of blog feeds I have crawled. I'm uncertain what is the reason, but by parsing one or two blogs with the feedparser returns me this particular ...

1 2