home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / python / pyhtmldoc / r / rfc822 < prev    next >
Text File  |  1996-11-14  |  1KB  |  28 lines

  1. <TITLE>rfc822 -- Python library reference</TITLE>
  2. Next: <A HREF="../m/mimetools" TYPE="Next">mimetools</A>  
  3. Prev: <A HREF="../f/formatter" TYPE="Prev">formatter</A>  
  4. Up: <A HREF="../i/internet_and_www" TYPE="Up">Internet and WWW</A>  
  5. Top: <A HREF="../t/top" TYPE="Top">Top</A>  
  6. <H1>10.11. Standard Module <CODE>rfc822</CODE></H1>
  7. This module defines a class, <CODE>Message</CODE>, which represents a
  8. collection of ``email headers'' as defined by the Internet standard
  9. RFC 822.  It is used in various contexts, usually to read such headers
  10. from a file.
  11. <P>
  12. A <CODE>Message</CODE> instance is instantiated with an open file object as
  13. parameter.  Instantiation reads headers from the file up to a blank
  14. line and stores them in the instance; after instantiation, the file is
  15. positioned directly after the blank line that terminates the headers.
  16. <P>
  17. Input lines as read from the file may either be terminated by CR-LF or
  18. by a single linefeed; a terminating CR-LF is replaced by a single
  19. linefeed before the line is stored.
  20. <P>
  21. All header matching is done independent of upper or lower case;
  22. e.g. <CODE>m['From']</CODE>, <CODE>m['from']</CODE> and <CODE>m['FROM']</CODE> all yield
  23. the same result.
  24. <P>
  25. <H2>Menu</H2><DL COMPACT>
  26. <DT><A HREF="../m/message_objects" TYPE=Menu>Message Objects</A>
  27. <DD></DL>
  28.