Contents
feedgen.ext.base¶
Basic FeedGenerator extension which does nothing but provides all necessary methods.
| copyright: | 2013, Lars Kiesow <lkiesow@uos.de> |
|---|---|
| license: | FreeBSD and LGPL, see license.* for more details. |
-
class
feedgen.ext.base.BaseEntryExtension¶ Basic FeedEntry extension.
-
class
feedgen.ext.base.BaseExtension¶ Basic FeedGenerator extension.
-
extend_atom(feed)¶ Extend an ATOM feed xml structure containing all previously set fields.
Parameters: feed – The feed xml root element. Returns: The feed root element.
-
extend_ns()¶ Returns a dict that will be used in the namespace map for the feed.
-
extend_rss(feed)¶ Extend a RSS feed xml structure containing all previously set fields.
Parameters: feed – The feed xml root element. Returns: The feed root element.
-