summaryrefslogtreecommitdiffstats
path: root/Doc/library/xml.rst
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2012-10-06 12:12:21 (GMT)
committerArmin Ronacher <armin.ronacher@active-4.com>2012-10-06 12:12:21 (GMT)
commitdfc23974ed149ae81d75e7719aee67648b48e217 (patch)
tree36d3cb362d2ab9a642aa6c049a8ca14f412bac9a /Doc/library/xml.rst
parentaa9a79d27958ae5afb6c8769a2b342d98677c091 (diff)
parent4ad4fb9732ae93e7aa7beb9684d7e3c10a95438f (diff)
downloadcpython-dfc23974ed149ae81d75e7719aee67648b48e217.zip
cpython-dfc23974ed149ae81d75e7719aee67648b48e217.tar.gz
cpython-dfc23974ed149ae81d75e7719aee67648b48e217.tar.bz2
merge default
Diffstat (limited to 'Doc/library/xml.rst')
-rw-r--r--Doc/library/xml.rst29
1 files changed, 29 insertions, 0 deletions
diff --git a/Doc/library/xml.rst b/Doc/library/xml.rst
new file mode 100644
index 0000000..21b2e23
--- /dev/null
+++ b/Doc/library/xml.rst
@@ -0,0 +1,29 @@
+.. _xml:
+
+XML Processing Modules
+======================
+
+Python's interfaces for processing XML are grouped in the ``xml`` package.
+
+It is important to note that modules in the :mod:`xml` package require that
+there be at least one SAX-compliant XML parser available. The Expat parser is
+included with Python, so the :mod:`xml.parsers.expat` module will always be
+available.
+
+The documentation for the :mod:`xml.dom` and :mod:`xml.sax` packages are the
+definition of the Python bindings for the DOM and SAX interfaces.
+
+The XML handling submodules are:
+
+* :mod:`xml.etree.ElementTree`: the ElementTree API, a simple and lightweight
+
+..
+
+* :mod:`xml.dom`: the DOM API definition
+* :mod:`xml.dom.minidom`: a lightweight DOM implementation
+* :mod:`xml.dom.pulldom`: support for building partial DOM trees
+
+..
+
+* :mod:`xml.sax`: SAX2 base classes and convenience functions
+* :mod:`xml.parsers.expat`: the Expat parser binding