blob: d5c56b6966ba5ec2abcc77f1c5aa988f32bb8ed3 [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
29 Create and return a SAX :class:`XMLReader` object. The first parser found will
30 be used. If *parser_list* is provided, it must be a sequence of strings which
31 name modules that have a function named :func:`create_parser`. Modules listed
32 in *parser_list* will be used before modules in the default list of parsers.
33
34
Georg Brandl7f01a132009-09-16 15:58:14 +000035.. function:: parse(filename_or_stream, handler, error_handler=handler.ErrorHandler())
Georg Brandl116aa622007-08-15 14:28:22 +000036
37 Create a SAX parser and use it to parse a document. The document, passed in as
38 *filename_or_stream*, can be a filename or a file object. The *handler*
39 parameter needs to be a SAX :class:`ContentHandler` instance. If
40 *error_handler* is given, it must be a SAX :class:`ErrorHandler` instance; if
41 omitted, :exc:`SAXParseException` will be raised on all errors. There is no
42 return value; all work must be done by the *handler* passed in.
43
44
Georg Brandl7f01a132009-09-16 15:58:14 +000045.. function:: parseString(string, handler, error_handler=handler.ErrorHandler())
Georg Brandl116aa622007-08-15 14:28:22 +000046
47 Similar to :func:`parse`, but parses from a buffer *string* received as a
48 parameter.
49
50A typical SAX application uses three kinds of objects: readers, handlers and
51input sources. "Reader" in this context is another term for parser, i.e. some
52piece of code that reads the bytes or characters from the input source, and
53produces a sequence of events. The events then get distributed to the handler
54objects, i.e. the reader invokes a method on the handler. A SAX application
55must therefore obtain a reader object, create or open the input sources, create
56the handlers, and connect these objects all together. As the final step of
57preparation, the reader is called to parse the input. During parsing, methods on
58the handler objects are called based on structural and syntactic events from the
59input data.
60
61For these objects, only the interfaces are relevant; they are normally not
62instantiated by the application itself. Since Python does not have an explicit
63notion of interface, they are formally introduced as classes, but applications
64may use implementations which do not inherit from the provided classes. The
65:class:`InputSource`, :class:`Locator`, :class:`Attributes`,
66:class:`AttributesNS`, and :class:`XMLReader` interfaces are defined in the
67module :mod:`xml.sax.xmlreader`. The handler interfaces are defined in
68:mod:`xml.sax.handler`. For convenience, :class:`InputSource` (which is often
69instantiated directly) and the handler classes are also available from
70:mod:`xml.sax`. These interfaces are described below.
71
72In addition to these classes, :mod:`xml.sax` provides the following exception
73classes.
74
75
Georg Brandl7f01a132009-09-16 15:58:14 +000076.. exception:: SAXException(msg, exception=None)
Georg Brandl116aa622007-08-15 14:28:22 +000077
78 Encapsulate an XML error or warning. This class can contain basic error or
79 warning information from either the XML parser or the application: it can be
80 subclassed to provide additional functionality or to add localization. Note
81 that although the handlers defined in the :class:`ErrorHandler` interface
82 receive instances of this exception, it is not required to actually raise the
83 exception --- it is also useful as a container for information.
84
85 When instantiated, *msg* should be a human-readable description of the error.
86 The optional *exception* parameter, if given, should be ``None`` or an exception
87 that was caught by the parsing code and is being passed along as information.
88
89 This is the base class for the other SAX exception classes.
90
91
92.. exception:: SAXParseException(msg, exception, locator)
93
94 Subclass of :exc:`SAXException` raised on parse errors. Instances of this class
95 are passed to the methods of the SAX :class:`ErrorHandler` interface to provide
96 information about the parse error. This class supports the SAX :class:`Locator`
97 interface as well as the :class:`SAXException` interface.
98
99
Georg Brandl7f01a132009-09-16 15:58:14 +0000100.. exception:: SAXNotRecognizedException(msg, exception=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000101
102 Subclass of :exc:`SAXException` raised when a SAX :class:`XMLReader` is
103 confronted with an unrecognized feature or property. SAX applications and
104 extensions may use this class for similar purposes.
105
106
Georg Brandl7f01a132009-09-16 15:58:14 +0000107.. exception:: SAXNotSupportedException(msg, exception=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000108
109 Subclass of :exc:`SAXException` raised when a SAX :class:`XMLReader` is asked to
110 enable a feature that is not supported, or to set a property to a value that the
111 implementation does not support. SAX applications and extensions may use this
112 class for similar purposes.
113
114
115.. seealso::
116
117 `SAX: The Simple API for XML <http://www.saxproject.org/>`_
118 This site is the focal point for the definition of the SAX API. It provides a
119 Java implementation and online documentation. Links to implementations and
120 historical information are also available.
121
122 Module :mod:`xml.sax.handler`
123 Definitions of the interfaces for application-provided objects.
124
125 Module :mod:`xml.sax.saxutils`
126 Convenience functions for use in SAX applications.
127
128 Module :mod:`xml.sax.xmlreader`
129 Definitions of the interfaces for parser-provided objects.
130
131
132.. _sax-exception-objects:
133
134SAXException Objects
135--------------------
136
137The :class:`SAXException` exception class supports the following methods:
138
139
140.. method:: SAXException.getMessage()
141
142 Return a human-readable message describing the error condition.
143
144
145.. method:: SAXException.getException()
146
147 Return an encapsulated exception object, or ``None``.
148