RSS Feed
Feed Objects for Generating RSS Feeds
Classes
RSSFeed
Bases: [BasePage]
Creates an RSS feed Page Object.
Note
This is the base object type and should only contain the params identified by the standards defined in the RSS 2.0 Specification.
This is built using the built-in rss2.0.xml jinja template.
Note
Some browsers may not support the
rssextension. If you are having issues with your feed, try changing the extension toxml.from render_engine import Site, RSSFeed class MyFeed(RSSFeed): extension = "xml" site = Site() @site.collection class MyCollection(Collection): Feed = MyFeed