Tagged Questions
0
votes
0answers
22 views
I want to create a simple rss feed in a django website. but got error
I wanted to create a simple rss feed in django 1.4.
Here are the steps i tried:
url.py
from django.conf.urls.defaults import *
from mysite.feeds import BlogFeed
feeds = {
'blog': BlogFeed,
}
...
0
votes
0answers
34 views
Is it possible to use graphical solution to feed initial conditions for numeric solution
A different exercise. This one asked to evaluate the value of x for x-2=ln(x). There are two approaches (A and B) - one makes use of the given equation and yields the smaller solution (x1). The other ...
0
votes
1answer
63 views
How do I aggregate feeds together in a string and then parse them?
I am trying to aggregate a few youtube feeds, concatenate them, and then parse the feeds.
When I parse the individual feed on their own, I have no trouble and the code seems to work. However, when I ...
0
votes
1answer
632 views
How to read all articles from a RSS feed?
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 ...
0
votes
3answers
623 views
django feed reader
I want to create in django something close to feed reader. It should download the xml data, parse it into python objects save it in database and update those objects if feed will be updated.
If ...
0
votes
1answer
384 views
Error accessing gmail atom feeds using feedparser
I was having a problem accessing my gmail atom feeds using feedparser module. For a non-password protected fees like a blog, for example,
import feedparser
d = ...
0
votes
1answer
236 views
Using facebook-sdk to publish in a user's “news feed”
Folks, I'm trying to publish a message to an user's "news feed" using facebook-sdk with little success. The following code is only able to publis to the user's wall. I want to publish it to the user's ...
0
votes
0answers
255 views
Django - feed url pattern with parameter
i build a feed like its described in in the docs: https://docs.djangoproject.com/en/1.3/ref/contrib/syndication/#a-complex-example
My feed class:
class UserRssFeed(Feed):
def get_object(self, ...
0
votes
2answers
416 views
Is there a tool for parsing feeds in Django
I did some googling and didn't find anything complete for my problem, but it is so generic, there has to be something.
I need feed parsing tool for my Django app (i want to fetch atom feed from ...
4
votes
2answers
262 views
EPFImporter creates table but imports nothing
I'm using Apple's EPFImporter tool http://www.apple.com/itunes/affiliates/resources/documentation/epfimporter.html
It's a Python script that will take space separated EPF file lists and import them ...
0
votes
1answer
122 views
Remove URLs and Images from FeedParser
I am using http://code.google.com/p/feedparser/ to write a simple news integrator.
But I want pure text ( with <p> tags), but no urls or images (ie. no <a> or <img> tags).
Here are ...
1
vote
4answers
678 views
Automatically Extracting feed links (atom, rss,etc) from webpages
I have a huge list of URLs and my task is to feed them to a python script which should spit out the feed urls if there are any. Is there an API library or code out there that can help?
0
votes
2answers
78 views
How to delete entities not found in feed on GAE
I am updating and adding items from a feed(which can have about 40000 items) to the datastore 200 items at a time, the problem is that the feed can change and some items might be deleted from the ...
13
votes
10answers
2k views
Library or tool to download multiple files in parallel [closed]
I'm looking for a python library or a command line tool for downloading multiple files in parallel. My current solution is to download the files sequentially which is slow. I know you can easily write ...
0
votes
0answers
117 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 ...