

feed parser entries
====================

code snippet
--------------

import feedparser
feed = feedparser.feed("my.xml")
feed["entries"]

[{'author': u'liris',
  'author_detail': {'name': u'liris'},
  'link': u'http://localhost:4321/blog/ddddd/',
  'links': [{'href': u'http://localhost:4321/blog/ddddd/',
             'rel': u'alternate',
             'type': 'text/html'}],
  'published': u'2007-02-20T18:16:02Z',
  'published_parsed': (2007, 2, 20, 18, 16, 2, 1, 51, 0),
  'summary': u'ddd',
  'summary_detail': {'base': '',
                     'language': None,
                     'type': 'text/plain',
                     'value': u'ddd'},
  'title': u'ddddd',
  'title_detail': {'base': '',
                   'language': None,
                   'type': 'text/plain',
                   'value': u'ddddd'},
  'updated': u'2007-02-20T18:16:02Z',
  'updated_parsed': (2007, 2, 20, 18, 16, 2, 1, 51, 0)}]


parsed mail conversion
=======================

author : get by setting
author_deail : the same as author
link: mail://${mail-message-id}
links: ignore
published: $date
published_parsed: time.struct_time of $date
updated: the same as published
updated_parsed: the same as published_parsed
summary: ${body}
summary_detail:
  base : ?
  language: None
  type : text/plain
  value: plain text value of summary
title: ${title}
title_detail: see summary_detail


