Tagged Questions

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
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
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
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 ...
0
votes
0answers
69 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
0answers
124 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
185 views

django feedparser limit the result

im doing something with feedparser: i have a templatetag for display "news" in my home page, but , how ill limit the feedparser result? inclusion tag from django.template import Template, Library ...