Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 617 Bytes

README.rst

File metadata and controls

25 lines (18 loc) · 617 Bytes

django-podcast-feed

Extra attributes or methods to set on PodcastFeed:

  • subtitle
  • artwork_link
  • itunes_category
  • explicit
  • owner_name
  • owner_email
  • item_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.