Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 1 | \section{Standard Module \sectcode{htmllib}} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 2 | \label{module-htmllib} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 3 | \stmodindex{htmllib} |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 4 | \index{HTML} |
| 5 | \index{hypertext} |
| 6 | |
| 7 | \renewcommand{\indexsubitem}{(in module htmllib)} |
| 8 | |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 9 | This module defines a class which can serve as a base for parsing text |
| 10 | files formatted in the HyperText Mark-up Language (HTML). The class |
| 11 | is not directly concerned with I/O --- it must be provided with input |
| 12 | in string form via a method, and makes calls to methods of a |
| 13 | ``formatter'' object in order to produce output. The |
| 14 | \code{HTMLParser} class is designed to be used as a base class for |
| 15 | other classes in order to add functionality, and allows most of its |
| 16 | methods to be extended or overridden. In turn, this class is derived |
| 17 | from and extends the \code{SGMLParser} class defined in module |
| 18 | \code{sgmllib}. Two implementations of formatter objects are |
| 19 | provided in the \code{formatter} module; refer to the documentation |
| 20 | for that module for information on the formatter interface. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 21 | \index{SGML} |
| 22 | \stmodindex{sgmllib} |
| 23 | \ttindex{SGMLParser} |
| 24 | \index{formatter} |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 25 | \stmodindex{formatter} |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 26 | |
| 27 | The following is a summary of the interface defined by |
| 28 | \code{sgmllib.SGMLParser}: |
| 29 | |
| 30 | \begin{itemize} |
| 31 | |
| 32 | \item |
| 33 | The interface to feed data to an instance is through the \code{feed()} |
| 34 | method, which takes a string argument. This can be called with as |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 35 | little or as much text at a time as desired; \code{p.feed(a); |
| 36 | p.feed(b)} has the same effect as \code{p.feed(a+b)}. When the data |
| 37 | contains complete HTML tags, these are processed immediately; |
| 38 | incomplete elements are saved in a buffer. To force processing of all |
| 39 | unprocessed data, call the \code{close()} method. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 40 | |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 41 | For example, to parse the entire contents of a file, use: |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 42 | \bcode\begin{verbatim} |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 43 | parser.feed(open('myfile.html').read()) |
| 44 | parser.close() |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 45 | \end{verbatim}\ecode |
| 46 | % |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 47 | \item |
| 48 | The interface to define semantics for HTML tags is very simple: derive |
| 49 | a class and define methods called \code{start_\var{tag}()}, |
| 50 | \code{end_\var{tag}()}, or \code{do_\var{tag}()}. The parser will |
| 51 | call these at appropriate moments: \code{start_\var{tag}} or |
| 52 | \code{do_\var{tag}} is called when an opening tag of the form |
| 53 | \code{<\var{tag} ...>} is encountered; \code{end_\var{tag}} is called |
| 54 | when a closing tag of the form \code{<\var{tag}>} is encountered. If |
| 55 | an opening tag requires a corresponding closing tag, like \code{<H1>} |
| 56 | ... \code{</H1>}, the class should define the \code{start_\var{tag}} |
| 57 | method; if a tag requires no closing tag, like \code{<P>}, the class |
| 58 | should define the \code{do_\var{tag}} method. |
| 59 | |
| 60 | \end{itemize} |
| 61 | |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 62 | The module defines a single class: |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 63 | |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 64 | \begin{funcdesc}{HTMLParser}{formatter} |
| 65 | This is the basic HTML parser class. It supports all entity names |
| 66 | required by the HTML 2.0 specification (RFC 1866). It also defines |
| 67 | handlers for all HTML 2.0 and many HTML 3.0 and 3.2 elements. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 68 | \end{funcdesc} |
| 69 | |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 70 | In addition to tag methods, the \code{HTMLParser} class provides some |
| 71 | additional methods and instance variables for use within tag methods. |
| 72 | |
Fred Drake | 095f35a | 1997-12-12 05:34:35 +0000 | [diff] [blame^] | 73 | \renewcommand{\indexsubitem}{(HTMLParser method)} |
Fred Drake | 8f92595 | 1996-10-09 16:13:22 +0000 | [diff] [blame] | 74 | |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 75 | \begin{datadesc}{formatter} |
| 76 | This is the formatter instance associated with the parser. |
| 77 | \end{datadesc} |
| 78 | |
| 79 | \begin{datadesc}{nofill} |
| 80 | Boolean flag which should be true when whitespace should not be |
| 81 | collapsed, or false when it should be. In general, this should only |
| 82 | be true when character data is to be treated as ``preformatted'' text, |
| 83 | as within a \code{<PRE>} element. The default value is false. This |
| 84 | affects the operation of \code{handle_data()} and \code{save_end()}. |
| 85 | \end{datadesc} |
| 86 | |
| 87 | \begin{funcdesc}{anchor_bgn}{href\, name\, type} |
| 88 | This method is called at the start of an anchor region. The arguments |
| 89 | correspond to the attributes of the \code{<A>} tag with the same |
| 90 | names. The default implementation maintains a list of hyperlinks |
| 91 | (defined by the \code{href} argument) within the document. The list |
| 92 | of hyperlinks is available as the data attribute \code{anchorlist}. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 93 | \end{funcdesc} |
| 94 | |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 95 | \begin{funcdesc}{anchor_end}{} |
| 96 | This method is called at the end of an anchor region. The default |
| 97 | implementation adds a textual footnote marker using an index into the |
| 98 | list of hyperlinks created by \code{anchor_bgn()}. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 99 | \end{funcdesc} |
| 100 | |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 101 | \begin{funcdesc}{handle_image}{source\, alt\optional{\, ismap\optional{\, align\optional{\, width\optional{\, height}}}}} |
| 102 | This method is called to handle images. The default implementation |
| 103 | simply passes the \code{alt} value to the \code{handle_data()} |
| 104 | method. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 105 | \end{funcdesc} |
| 106 | |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 107 | \begin{funcdesc}{save_bgn}{} |
| 108 | Begins saving character data in a buffer instead of sending it to the |
| 109 | formatter object. Retrieve the stored data via \code{save_end()} |
| 110 | Use of the \code{save_bgn()} / \code{save_end()} pair may not be |
| 111 | nested. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 112 | \end{funcdesc} |
| 113 | |
Fred Drake | 58d7f69 | 1996-10-08 21:52:23 +0000 | [diff] [blame] | 114 | \begin{funcdesc}{save_end}{} |
| 115 | Ends buffering character data and returns all data saved since the |
| 116 | preceeding call to \code{save_bgn()}. If \code{nofill} flag is false, |
| 117 | whitespace is collapsed to single spaces. A call to this method |
| 118 | without a preceeding call to \code{save_bgn()} will raise a |
| 119 | \code{TypeError} exception. |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 120 | \end{funcdesc} |