Deprecated since version 2.6: The sgmllib module has been removed in Python 3.0.
This module defines a class SGMLParser which serves as the basis for parsing text files formatted in SGML (Standard Generalized Mark-up Language). In fact, it does not provide a full SGML parser — it only parses SGML insofar as it is used by HTML, and the module only exists as a base for the htmllib module. Another HTML parser which supports XHTML and offers a somewhat different interface is available in the HTMLParser module.
The SGMLParser class is instantiated without arguments. The parser is hardcoded to recognize the following constructs:
A single exception is defined as well:
Exception raised by the SGMLParser class when it encounters an error while parsing.
New in version 2.1.
SGMLParser instances have the following methods:
This method is called to handle start tags for which either a start_tag() or do_tag() method has been defined. The tag argument is the name of the tag converted to lower case, and the method argument is the bound method which should be used to support semantic interpretation of the start tag. The attributes argument is a list of (name, value) pairs containing the attributes found inside the tag’s <> brackets.
The name has been translated to lower case. Double quotes and backslashes in the value have been interpreted, as well as known character references and known entity references terminated by a semicolon (normally, entity references can be terminated by any non-alphanumerical character, but this would break the very common case of <A HREF="url?spam=1&eggs=2"> when eggs is a valid entity name).
For instance, for the tag <A HREF="http://www.cwi.nl/">, this method would be called as unknown_starttag('a', [('href', 'http://www.cwi.nl/')]). The base implementation simply calls method with attributes as the only argument.
New in version 2.5: Handling of entity and character references within attribute values.
This method is called to process a character reference of the form &#ref;. The base implementation uses convert_charref() to convert the reference to a string. If that method returns a string, it is passed to handle_data(), otherwise unknown_charref(ref) is called to handle the error.
Changed in version 2.5: Use convert_charref() instead of hard-coding the conversion.
Convert a character reference to a string, or None. ref is the reference passed in as a string. In the base implementation, ref must be a decimal number in the range 0-255. It converts the code point found using the convert_codepoint() method. If ref is invalid or out of range, this method returns None. This method is called by the default handle_charref() implementation and by the attribute value parser.
New in version 2.5.
Convert a codepoint to a str value. Encodings can be handled here if appropriate, though the rest of sgmllib is oblivious on this matter.
New in version 2.5.
This method is called to process a general entity reference of the form &ref; where ref is an general entity reference. It converts ref by passing it to convert_entityref(). If a translation is returned, it calls the method handle_data() with the translation; otherwise, it calls the method unknown_entityref(ref). The default entitydefs defines translations for &, &apos, >, <, and ".
Changed in version 2.5: Use convert_entityref() instead of hard-coding the conversion.
Convert a named entity reference to a str value, or None. The resulting value will not be parsed. ref will be only the name of the entity. The default implementation looks for ref in the instance (or class) variable entitydefs which should be a mapping from entity names to corresponding translations. If no translation is available for ref, this method returns None. This method is called by the default handle_entityref() implementation and by the attribute value parser.
New in version 2.5.
Apart from overriding or extending the methods listed above, derived classes may also define methods of the following form to define processing of specific tags. Tag names in the input stream are case independent; the tag occurring in method names must be in lower case:
Note that the parser maintains a stack of open elements for which no end tag has been found yet. Only tags processed by start_tag() are pushed on this stack. Definition of an end_tag() method is optional for these tags. For tags processed by do_tag() or by unknown_tag(), no end_tag() method must be defined; if defined, it will not be used. If both start_tag() and do_tag() methods exist for a tag, the start_tag() method takes precedence.