blob: 5749cd8e1311804075a41a17f0e768fd6e37d6a6 [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 Drake0f51fff1998-03-14 06:16:57 +00008This module defines a subclass of the \class{rfc822.Message} class and
Guido van Rossumcca8d2b1995-03-22 15:48:46 +00009a number of utility functions that are useful for the manipulation for
Fred Drake0f51fff1998-03-14 06:16:57 +000010MIME multipart or encoded message.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000011
12It defines the following items:
13
Fred Drake0f51fff1998-03-14 06:16:57 +000014\begin{classdesc}{Message}{fp\optional{, seekable}}
15Return a new instance of the \class{Message} class. This is a
16subclass of the \class{rfc822.Message} class, with some additional
17methods (see below). The \var{seekable} argument has the same meaning
18as for \class{rfc822.Message}.
19\end{classdesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000020
21\begin{funcdesc}{choose_boundary}{}
22Return a unique string that has a high likelihood of being usable as a
23part boundary. The string has the form
Fred Drake0f51fff1998-03-14 06:16:57 +000024\code{'\var{hostipaddr}.\var{uid}.\var{pid}.\var{timestamp}.\var{random}'}.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000025\end{funcdesc}
26
Fred Drake0f51fff1998-03-14 06:16:57 +000027\begin{funcdesc}{decode}{input, output, encoding}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000028Read data encoded using the allowed MIME \var{encoding} from open file
29object \var{input} and write the decoded data to open file object
30\var{output}. Valid values for \var{encoding} include
Fred Drake0f51fff1998-03-14 06:16:57 +000031\code{'base64'}, \code{'quoted-printable'} and \code{'uuencode'}.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000032\end{funcdesc}
33
Fred Drakecce10901998-03-17 06:33:25 +000034\begin{funcdesc}{encode}{input, output, encoding}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000035Read data from open file object \var{input} and write it encoded using
36the allowed MIME \var{encoding} to open file object \var{output}.
Fred Drake0f51fff1998-03-14 06:16:57 +000037Valid values for \var{encoding} are the same as for \method{decode()}.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000038\end{funcdesc}
39
Fred Drakecce10901998-03-17 06:33:25 +000040\begin{funcdesc}{copyliteral}{input, output}
Fred Drake38e5d272000-04-03 20:13:55 +000041Read lines from open file \var{input} until \EOF{} and write them to
Fred Drake01dbb881998-02-13 22:13:07 +000042open file \var{output}.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000043\end{funcdesc}
44
Fred Drakecce10901998-03-17 06:33:25 +000045\begin{funcdesc}{copybinary}{input, output}
Fred Drake01dbb881998-02-13 22:13:07 +000046Read blocks until \EOF{} from open file \var{input} and write them to
47open file \var{output}. The block size is currently fixed at 8192.
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000048\end{funcdesc}
49
50
Fred Drake38e5d272000-04-03 20:13:55 +000051\begin{seealso}
52 \seemodule{rfc822}{Provides the base class for
53 \class{mimetools.Message}.}
Fred Drake71b04da2000-04-05 22:05:15 +000054 \seemodule{multifile}{Support for reading files which contain
55 distinct parts, such as MIME data.}
Fred Drake38e5d272000-04-03 20:13:55 +000056\end{seealso}
57
58
Guido van Rossumecde7811995-03-28 13:35:14 +000059\subsection{Additional Methods of Message objects}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000060\nodename{mimetools.Message Methods}
61
Fred Drake0f51fff1998-03-14 06:16:57 +000062The \class{Message} class defines the following methods in
63addition to the \class{rfc822.Message} methods:
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000064
Fred Drakefc576191998-04-04 07:15:02 +000065\begin{methoddesc}{getplist}{}
Fred Drake0f51fff1998-03-14 06:16:57 +000066Return the parameter list of the \code{content-type} header. This is
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000067a list if strings. For parameters of the form
68\samp{\var{key}=\var{value}}, \var{key} is converted to lower case but
69\var{value} is not. For example, if the message contains the header
70\samp{Content-type: text/html; spam=1; Spam=2; Spam} then
Fred Drake0f51fff1998-03-14 06:16:57 +000071\method{getplist()} will return the Python list \code{['spam=1',
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000072'spam=2', 'Spam']}.
Fred Drakefc576191998-04-04 07:15:02 +000073\end{methoddesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000074
Fred Drakefc576191998-04-04 07:15:02 +000075\begin{methoddesc}{getparam}{name}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000076Return the \var{value} of the first parameter (as returned by
Fred Drake0f51fff1998-03-14 06:16:57 +000077\method{getplist()} of the form \samp{\var{name}=\var{value}} for the
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000078given \var{name}. If \var{value} is surrounded by quotes of the form
Fred Drake01dbb881998-02-13 22:13:07 +000079`\code{<}...\code{>}' or `\code{"}...\code{"}', these are removed.
Fred Drakefc576191998-04-04 07:15:02 +000080\end{methoddesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000081
Fred Drakefc576191998-04-04 07:15:02 +000082\begin{methoddesc}{getencoding}{}
Fred Drake0f51fff1998-03-14 06:16:57 +000083Return the encoding specified in the \code{content-transfer-encoding}
84message header. If no such header exists, return \code{'7bit'}. The
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000085encoding is converted to lower case.
Fred Drakefc576191998-04-04 07:15:02 +000086\end{methoddesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000087
Fred Drakefc576191998-04-04 07:15:02 +000088\begin{methoddesc}{gettype}{}
Fred Drake4b3f0311996-12-13 22:04:31 +000089Return the message type (of the form \samp{\var{type}/\var{subtype}})
Fred Drake0f51fff1998-03-14 06:16:57 +000090as specified in the \code{content-type} header. If no such header
91exists, return \code{'text/plain'}. The type is converted to lower
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000092case.
Fred Drakefc576191998-04-04 07:15:02 +000093\end{methoddesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000094
Fred Drakefc576191998-04-04 07:15:02 +000095\begin{methoddesc}{getmaintype}{}
Fred Drake0f51fff1998-03-14 06:16:57 +000096Return the main type as specified in the \code{content-type} header.
97If no such header exists, return \code{'text'}. The main type is
Guido van Rossumcca8d2b1995-03-22 15:48:46 +000098converted to lower case.
Fred Drakefc576191998-04-04 07:15:02 +000099\end{methoddesc}
Guido van Rossumcca8d2b1995-03-22 15:48:46 +0000100
Fred Drakefc576191998-04-04 07:15:02 +0000101\begin{methoddesc}{getsubtype}{}
Fred Drake0f51fff1998-03-14 06:16:57 +0000102Return the subtype as specified in the \code{content-type} header. If
103no such header exists, return \code{'plain'}. The subtype is
Guido van Rossumcca8d2b1995-03-22 15:48:46 +0000104converted to lower case.
Fred Drakefc576191998-04-04 07:15:02 +0000105\end{methoddesc}