class documentation

class Feed(BaseFeed):

View In Hierarchy

This is a subclass of the Feed from django.contrib.syndication. This allows users to define a geometry(obj) and/or item_geometry(item) methods on their own subclasses so that geo-referenced information may placed in the feed.
Method feed​_extra​_kwargs Return an extra keyword arguments dictionary that is used when initializing the feed generator.
Method item​_extra​_kwargs Return an extra keyword arguments dictionary that is used with the add_item call of the feed generator.

Inherited from Feed:

Method __call__ Undocumented
Method ​_get​_dynamic​_attr Undocumented
Method get​_context​_data Return a dictionary to use as extra context if either self.description_template or self.item_template are used.
Method get​_feed Return a feedgenerator.DefaultFeed object, fully populated, for this feed. Raise FeedDoesNotExist for invalid parameters.
Method get​_object Undocumented
Method item​_description Undocumented
Method item​_enclosures Undocumented
Method item​_link Undocumented
Method item​_title Undocumented
Class Variable description​_template Undocumented
Class Variable language Undocumented
Class Variable title​_template Undocumented
def feed_extra_kwargs(self, obj):
Return an extra keyword arguments dictionary that is used when initializing the feed generator.
def item_extra_kwargs(self, item):
Return an extra keyword arguments dictionary that is used with the add_item call of the feed generator.