blob: 28efec04c46a4635bf61b9c34ce5cde2d4bcf685 [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{\module{mimetools} ---
Fred Drake56f81851999-02-19 22:59:56 +00002 Tools for parsing MIME messages}
3
Fred Drakeb91e9341998-07-23 17:59:49 +00004\declaremodule{standard}{mimetools}
Fred Drake38e5d272000-04-03 20:13:55 +00005\modulesynopsis{Tools for parsing MIME-style message bodies.}
Fred Drakeb91e9341998-07-23 17:59:49 +00006
Guido van Rossum86751151995-02-28 17:14:32 +00007
Fred Drake35784df2000-05-09 16:23:23 +00008This module defines a subclass of the
9\refmodule{rfc822}\refstmodindex{rfc822} module's
10\class{Message} class and a number of utility functions that are
11useful for the manipulation for MIME multipart or encoded message.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000012
13It defines the following items:
14
Fred Drake0f51fff1998-03-14 06:16:57 +000015\begin{classdesc}{Message}{fp\optional{, seekable}}
16Return a new instance of the \class{Message} class. This is a
17subclass of the \class{rfc822.Message} class, with some additional
18methods (see below). The \var{seekable} argument has the same meaning
19as for \class{rfc822.Message}.
20\end{classdesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000021
22\begin{funcdesc}{choose_boundary}{}
23Return a unique string that has a high likelihood of being usable as a
24part boundary. The string has the form
Fred Drake0f51fff1998-03-14 06:16:57 +000025\code{'\var{hostipaddr}.\var{uid}.\var{pid}.\var{timestamp}.\var{random}'}.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000026\end{funcdesc}
27
Fred Drake0f51fff1998-03-14 06:16:57 +000028\begin{funcdesc}{decode}{input, output, encoding}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000029Read data encoded using the allowed MIME \var{encoding} from open file
30object \var{input} and write the decoded data to open file object
31\var{output}. Valid values for \var{encoding} include
Skip Montanaro3b2625f2002-04-10 04:37:09 +000032\code{'base64'}, \code{'quoted-printable'}, \code{'uuencode'},
33\code{'x-uuencode'}, \code{'uue'}, \code{'x-uue'}, \code{'7bit'}, and
34\code{'8bit'}. Decoding messages encoded in \code{'7bit'} or \code{'8bit'}
35has no effect. The input is simply copied to the output.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000036\end{funcdesc}
37
Fred Drakecce10901998-03-17 06:33:25 +000038\begin{funcdesc}{encode}{input, output, encoding}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000039Read data from open file object \var{input} and write it encoded using
40the allowed MIME \var{encoding} to open file object \var{output}.
Fred Drake0f51fff1998-03-14 06:16:57 +000041Valid values for \var{encoding} are the same as for \method{decode()}.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000042\end{funcdesc}
43
Fred Drakecce10901998-03-17 06:33:25 +000044\begin{funcdesc}{copyliteral}{input, output}
Fred Drake38e5d272000-04-03 20:13:55 +000045Read lines from open file \var{input} until \EOF{} and write them to
Fred Drake01dbb881998-02-13 22:13:07 +000046open file \var{output}.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000047\end{funcdesc}
48
Fred Drakecce10901998-03-17 06:33:25 +000049\begin{funcdesc}{copybinary}{input, output}
Fred Drake01dbb881998-02-13 22:13:07 +000050Read blocks until \EOF{} from open file \var{input} and write them to
51open file \var{output}. The block size is currently fixed at 8192.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000052\end{funcdesc}
53
54
Fred Drake38e5d272000-04-03 20:13:55 +000055\begin{seealso}
56 \seemodule{rfc822}{Provides the base class for
57 \class{mimetools.Message}.}
Fred Drake71b04da2000-04-05 22:05:15 +000058 \seemodule{multifile}{Support for reading files which contain
59 distinct parts, such as MIME data.}
Fred Drake35784df2000-05-09 16:23:23 +000060 \seeurl{http://www.cs.uu.nl/wais/html/na-dir/mail/mime-faq/.html}{
61 The MIME Frequently Asked Questions document. For an
62 overview of MIME, see the answer to question 1.1 in Part 1
63 of this document.}
Fred Drake38e5d272000-04-03 20:13:55 +000064\end{seealso}
65
66
Fred Drake2c4f5542000-10-10 22:00:03 +000067\subsection{Additional Methods of Message Objects
68 \label{mimetools-message-objects}}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000069
Fred Drake0f51fff1998-03-14 06:16:57 +000070The \class{Message} class defines the following methods in
71addition to the \class{rfc822.Message} methods:
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000072
Fred Drakefc576191998-04-04 07:15:02 +000073\begin{methoddesc}{getplist}{}
Fred Draked86038d2001-08-03 18:39:36 +000074Return the parameter list of the \mailheader{Content-Type} header.
75This is a list of strings. For parameters of the form
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000076\samp{\var{key}=\var{value}}, \var{key} is converted to lower case but
77\var{value} is not. For example, if the message contains the header
78\samp{Content-type: text/html; spam=1; Spam=2; Spam} then
Fred Drake0f51fff1998-03-14 06:16:57 +000079\method{getplist()} will return the Python list \code{['spam=1',
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000080'spam=2', 'Spam']}.
Fred Drakefc576191998-04-04 07:15:02 +000081\end{methoddesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000082
Fred Drakefc576191998-04-04 07:15:02 +000083\begin{methoddesc}{getparam}{name}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000084Return the \var{value} of the first parameter (as returned by
Fred Drake0f51fff1998-03-14 06:16:57 +000085\method{getplist()} of the form \samp{\var{name}=\var{value}} for the
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000086given \var{name}. If \var{value} is surrounded by quotes of the form
Fred Drake01dbb881998-02-13 22:13:07 +000087`\code{<}...\code{>}' or `\code{"}...\code{"}', these are removed.
Fred Drakefc576191998-04-04 07:15:02 +000088\end{methoddesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000089
Fred Drakefc576191998-04-04 07:15:02 +000090\begin{methoddesc}{getencoding}{}
Fred Draked86038d2001-08-03 18:39:36 +000091Return the encoding specified in the
92\mailheader{Content-Transfer-Encoding} message header. If no such
93header exists, return \code{'7bit'}. The encoding is converted to
94lower case.
Fred Drakefc576191998-04-04 07:15:02 +000095\end{methoddesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000096
Fred Drakefc576191998-04-04 07:15:02 +000097\begin{methoddesc}{gettype}{}
Fred Drake4b3f0311996-12-13 22:04:31 +000098Return the message type (of the form \samp{\var{type}/\var{subtype}})
Fred Draked86038d2001-08-03 18:39:36 +000099as specified in the \mailheader{Content-Type} header. If no such
100header exists, return \code{'text/plain'}. The type is converted to
101lower case.
Fred Drakefc576191998-04-04 07:15:02 +0000102\end{methoddesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +0000103
Fred Drakefc576191998-04-04 07:15:02 +0000104\begin{methoddesc}{getmaintype}{}
Fred Draked86038d2001-08-03 18:39:36 +0000105Return the main type as specified in the \mailheader{Content-Type}
106header. If no such header exists, return \code{'text'}. The main
107type is converted to lower case.
Fred Drakefc576191998-04-04 07:15:02 +0000108\end{methoddesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +0000109
Fred Drakefc576191998-04-04 07:15:02 +0000110\begin{methoddesc}{getsubtype}{}
Fred Draked86038d2001-08-03 18:39:36 +0000111Return the subtype as specified in the \mailheader{Content-Type}
112header. If no such header exists, return \code{'plain'}. The subtype
113is converted to lower case.
Fred Drakefc576191998-04-04 07:15:02 +0000114\end{methoddesc}