blob: e95d6b0f853ac9a708adcd8058aec7cd66fba97e [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`xml.sax` --- Support for SAX2 parsers
2===========================================
3
4.. module:: xml.sax
5 :synopsis: Package containing SAX2 base classes and convenience functions.
6.. moduleauthor:: Lars Marius Garshol <larsga@garshol.priv.no>
7.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
8.. sectionauthor:: Martin v. Lรถwis <martin@v.loewis.de>
9
10
Georg Brandl116aa622007-08-15 14:28:22 +000011The :mod:`xml.sax` package provides a number of modules which implement the
12Simple API for XML (SAX) interface for Python. The package itself provides the
13SAX exceptions and the convenience functions which will be most used by users of
14the SAX API.
15
Christian Heimes7380a672013-03-26 17:35:55 +010016
17.. warning::
18
19 The :mod:`xml.sax` module is not secure against maliciously
20 constructed data. If you need to parse untrusted or unauthenticated data see
21 :ref:`xml-vulnerabilities`.
22
23
Georg Brandl116aa622007-08-15 14:28:22 +000024The convenience functions are:
25
26
Georg Brandl7f01a132009-09-16 15:58:14 +000027.. function:: make_parser(parser_list=[])
Georg Brandl116aa622007-08-15 14:28:22 +000028
Serhiy Storchaka15e65902013-08-29 10:28:44 +030029 Create and return a SAX :class:`~xml.sax.xmlreader.XMLReader` object. The
30 first parser found will
Georg Brandl116aa622007-08-15 14:28:22 +000031 be used. If *parser_list* is provided, it must be a sequence of strings which
32 name modules that have a function named :func:`create_parser`. Modules listed
33 in *parser_list* will be used before modules in the default list of parsers.
34
35
Georg Brandl7f01a132009-09-16 15:58:14 +000036.. function:: parse(filename_or_stream, handler, error_handler=handler.ErrorHandler())
Georg Brandl116aa622007-08-15 14:28:22 +000037
38 Create a SAX parser and use it to parse a document. The document, passed in as
39 *filename_or_stream*, can be a filename or a file object. The *handler*
Serhiy Storchaka15e65902013-08-29 10:28:44 +030040 parameter needs to be a SAX :class:`~handler.ContentHandler` instance. If
41 *error_handler* is given, it must be a SAX :class:`~handler.ErrorHandler`
42 instance; if
Georg Brandl116aa622007-08-15 14:28:22 +000043 omitted, :exc:`SAXParseException` will be raised on all errors. There is no
44 return value; all work must be done by the *handler* passed in.
45
46
Georg Brandl7f01a132009-09-16 15:58:14 +000047.. function:: parseString(string, handler, error_handler=handler.ErrorHandler())
Georg Brandl116aa622007-08-15 14:28:22 +000048
49 Similar to :func:`parse`, but parses from a buffer *string* received as a
50 parameter.
51
52A typical SAX application uses three kinds of objects: readers, handlers and
53input sources. "Reader" in this context is another term for parser, i.e. some
54piece of code that reads the bytes or characters from the input source, and
55produces a sequence of events. The events then get distributed to the handler
56objects, i.e. the reader invokes a method on the handler. A SAX application
57must therefore obtain a reader object, create or open the input sources, create
58the handlers, and connect these objects all together. As the final step of
59preparation, the reader is called to parse the input. During parsing, methods on
60the handler objects are called based on structural and syntactic events from the
61input data.
62
63For these objects, only the interfaces are relevant; they are normally not
64instantiated by the application itself. Since Python does not have an explicit
65notion of interface, they are formally introduced as classes, but applications
66may use implementations which do not inherit from the provided classes. The
Serhiy Storchaka15e65902013-08-29 10:28:44 +030067:class:`~xml.sax.xmlreader.InputSource`, :class:`~xml.sax.xmlreader.Locator`,
68:class:`~xml.sax.xmlreader.Attributes`, :class:`~xml.sax.xmlreader.AttributesNS`,
69and :class:`~xml.sax.xmlreader.XMLReader` interfaces are defined in the
Georg Brandl116aa622007-08-15 14:28:22 +000070module :mod:`xml.sax.xmlreader`. The handler interfaces are defined in
Serhiy Storchaka15e65902013-08-29 10:28:44 +030071:mod:`xml.sax.handler`. For convenience,
72:class:`~xml.sax.xmlreader.InputSource` (which is often
Georg Brandl116aa622007-08-15 14:28:22 +000073instantiated directly) and the handler classes are also available from
74:mod:`xml.sax`. These interfaces are described below.
75
76In addition to these classes, :mod:`xml.sax` provides the following exception
77classes.
78
79
Georg Brandl7f01a132009-09-16 15:58:14 +000080.. exception:: SAXException(msg, exception=None)
Georg Brandl116aa622007-08-15 14:28:22 +000081
82 Encapsulate an XML error or warning. This class can contain basic error or
83 warning information from either the XML parser or the application: it can be
84 subclassed to provide additional functionality or to add localization. Note
Serhiy Storchaka15e65902013-08-29 10:28:44 +030085 that although the handlers defined in the
86 :class:`~xml.sax.handler.ErrorHandler` interface
Georg Brandl116aa622007-08-15 14:28:22 +000087 receive instances of this exception, it is not required to actually raise the
88 exception --- it is also useful as a container for information.
89
90 When instantiated, *msg* should be a human-readable description of the error.
91 The optional *exception* parameter, if given, should be ``None`` or an exception
92 that was caught by the parsing code and is being passed along as information.
93
94 This is the base class for the other SAX exception classes.
95
96
97.. exception:: SAXParseException(msg, exception, locator)
98
Serhiy Storchaka15e65902013-08-29 10:28:44 +030099 Subclass of :exc:`SAXException` raised on parse errors. Instances of this
100 class are passed to the methods of the SAX
101 :class:`~xml.sax.handler.ErrorHandler` interface to provide information
102 about the parse error. This class supports the SAX
103 :class:`~xml.sax.xmlreader.Locator` interface as well as the
104 :class:`SAXException` interface.
Georg Brandl116aa622007-08-15 14:28:22 +0000105
106
Georg Brandl7f01a132009-09-16 15:58:14 +0000107.. exception:: SAXNotRecognizedException(msg, exception=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000108
Serhiy Storchaka15e65902013-08-29 10:28:44 +0300109 Subclass of :exc:`SAXException` raised when a SAX
110 :class:`~xml.sax.xmlreader.XMLReader` is
Georg Brandl116aa622007-08-15 14:28:22 +0000111 confronted with an unrecognized feature or property. SAX applications and
112 extensions may use this class for similar purposes.
113
114
Georg Brandl7f01a132009-09-16 15:58:14 +0000115.. exception:: SAXNotSupportedException(msg, exception=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000116
Serhiy Storchaka15e65902013-08-29 10:28:44 +0300117 Subclass of :exc:`SAXException` raised when a SAX
118 :class:`~xml.sax.xmlreader.XMLReader` is asked to
Georg Brandl116aa622007-08-15 14:28:22 +0000119 enable a feature that is not supported, or to set a property to a value that the
120 implementation does not support. SAX applications and extensions may use this
121 class for similar purposes.
122
123
124.. seealso::
125
126 `SAX: The Simple API for XML <http://www.saxproject.org/>`_
127 This site is the focal point for the definition of the SAX API. It provides a
128 Java implementation and online documentation. Links to implementations and
129 historical information are also available.
130
131 Module :mod:`xml.sax.handler`
132 Definitions of the interfaces for application-provided objects.
133
134 Module :mod:`xml.sax.saxutils`
135 Convenience functions for use in SAX applications.
136
137 Module :mod:`xml.sax.xmlreader`
138 Definitions of the interfaces for parser-provided objects.
139
140
141.. _sax-exception-objects:
142
143SAXException Objects
144--------------------
145
146The :class:`SAXException` exception class supports the following methods:
147
148
149.. method:: SAXException.getMessage()
150
151 Return a human-readable message describing the error condition.
152
153
154.. method:: SAXException.getException()
155
156 Return an encapsulated exception object, or ``None``.
157