Can you please add an item's publish date (<pubDate>) to the RSS feed? It's seriously low-hanging fruit. Just whatever the date in the DB says is fine - there must be a 'created' timestamp in there somewhere. Format it as RFC822 timestamp:
def _format_date(dt):
"""convert a datetime into an RFC 822 formatted date
Input date must be in GMT.
"""
def _format_date(dt): """convert a datetime into an RFC 822 formatted date Input date must be in GMT. """
-Russ