module documentation

Syndication feed generation library -- used for generating RSS, etc.

Sample usage:

>>> from django.utils import feedgenerator
>>> feed = feedgenerator.Rss201rev2Feed(
...     title="Poynter E-Media Tidbits",
...     link="http://www.poynter.org/column.asp?id=31",
...     description="A group blog by the sharpest minds in online media/journalism/publishing.",
...     language="en",
... )
>>> feed.add_item(
...     title="Hello",
...     link="http://www.holovaty.com/test/",
...     description="Testing."
... )
>>> with open('test.rss', 'w') as fp:
...     feed.write(fp, 'utf-8')

For definitions of the different versions of RSS, see: https://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004/02/04/incompatible-rss

Class ​Atom1​Feed Undocumented
Class ​Enclosure An RSS enclosure
Class ​Rss201rev2​Feed Undocumented
Class ​Rss​Feed Undocumented
Class ​Rss​Userland091​Feed Undocumented
Class ​Syndication​Feed Base class for all syndication feeds. Subclasses should provide write()
Function get​_tag​_uri Create a TagURI.
Function rfc2822​_date Undocumented
Function rfc3339​_date Undocumented
def rfc2822_date(date):

Undocumented

def rfc3339_date(date):

Undocumented