As part of my first steps into Python and Django, I'm trying to generate an RSS feed for a group of individual writers. I'm finally able to generate an RSS feed, but it's incorrect.
This is what I'm getting: <item> <title><Writerfeed object></title> <link>http://www.foo.bar</link> <description><Writerfeed object></description> <guid>http://www.foo.bar</guid> </item> The link and guid are correct, but I'm not getting the actual title or description or other data (publication date, etc). I'm just not seeing what I need to do differently to pull in the actual values for title and description. Any ideas? Thanks much, Dan This is the feeds.py: from django.contrib.syndication.feeds import Feed from django.models.bylines import writers, writerfeeds class Authors(Feed): def get_object(self, bits): if len(bits) != 1: raise ObjectDoesNotExist return writers.get_object(feed_name__exact=bits[0]) def title(self, obj): return "Stories by %s" % obj.byline def link(self, obj): return "/rss/writers/%s" % obj.feed_name def description(self, obj): return "Stories by %s" % obj.byline def items(self, obj): return writerfeeds.get_list(writerid__id__exact=obj.id, limit=25, order_by=['-pub_date'])