Quantcast
Channel: Publish feeds using Django - Stack Overflow
Browsing all 4 articles
Browse latest View live

Answer by Spencer Davis for Publish feeds using Django

According to the Feed Class Reference in the Django documentation, the item_pubdate field is supposed to return a datetime.datetime object. If item.date is just a DateField and not a DateTimeField,...

View Article



Answer by Jonathan Lin for Publish feeds using Django

I've been banging my head against this one for a while. It seems that the django rss system need a "datetime" object instead of just the date (since it wants a time zone, and the date object doesn't...

View Article

Answer by phillc for Publish feeds using Django

This is how mine is setup, and it is working.class AllFeed(Feed): def item_pubdate(self, item): return item.date

View Article

Publish feeds using Django

I'm publishing a feed from a Django application.I subclassed django.contrib.syndication.feeds.Feed, everything works fine, except the date that doesn't get published on the feed.Here's the method I've...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images