This version is only usable for Python 2.X versions.
Extra attributes or methods to set on PodcastFeed:
subtitleartwork_linkitunes_categoryexplicitowner_nameowner_emailitem_duration
For example:
MyPodcastFeed(podcast_feed.PodcastFeed):
artwork_link = static('artwork.png')
def get_items(self):
Episode.objects.all()
def item_duration(self, item):
return item.duration_field
A more involved usage can be found in jeffbr13/br-rss's views.