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 journalism.", ... 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 Atom1Feed Undocumented
Class Enclosure An RSS enclosure
Class Rss201rev2Feed Undocumented
Class RssFeed Undocumented
Class RssUserland091Feed Undocumented
Class SyndicationFeed 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 get_tag_uri(url, date): (source)

Create a TagURI. See https://web.archive.org/web/20110514113830/http://diveintomark.org/archives/2004/05/28/howto-atom-id

def rfc2822_date(date): (source)

Undocumented

def rfc3339_date(date): (source)

Undocumented