Metadata-Version: 1.1
Name: django-podcast-feed
Version: 0.0.2
Summary: Generate Apple Podcasts-compatible syndication feeds.
Home-page: https://github.com/jeffbr13/xq
Author: Ben Jeffrey
Author-email: mail@benjeffrey.net
License: MPL 2.0
Description-Content-Type: UNKNOWN
Description: 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 <https://github.com/jeffbr13/br-rss/blob/master/br_rss/boilerroomtv/views.py>`_.
        
Keywords: django podcast feed
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Framework :: Django
