Tagged Questions
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 = ...
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 ...
1
vote
4answers
35 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
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
...
0
votes
1answer
75 views
How to speed up RSS Parser parsing feed and thumbnails
I wrote a rss parser for my podcast app. If I am parsing a rss feed with different podcasts and showing the result in a ListView, it takes about 1-2 seconds for my parser to parse the whole feed.
...