blob: bf6d8ddfd04c934003004472d7f03bfa3f06b5f5 [file] [log] [blame]
Fred Drakee85c3502000-06-29 19:28:01 +00001"""Core XML support for Python.
2
Fredrik Lundh7e0aef02005-12-12 18:54:55 +00003This package contains four sub-packages:
Fred Drakee85c3502000-06-29 19:28:01 +00004
5dom -- The W3C Document Object Model. This supports DOM Level 1 +
6 Namespaces.
7
Fred Drake327e1872000-08-01 00:05:16 +00008parsers -- Python wrappers for XML parsers (currently only supports Expat).
Fred Drakee85c3502000-06-29 19:28:01 +00009
10sax -- The Simple API for XML, developed by XML-Dev, led by David
Fred Drake16f63292000-10-23 18:09:50 +000011 Megginson and ported to Python by Lars Marius Garshol. This
Paul Prescod73678da2000-07-01 04:58:47 +000012 supports the SAX 2 API.
Fredrik Lundh7e0aef02005-12-12 18:54:55 +000013
14etree -- The ElementTree XML library. This is a subset of the full
15 ElementTree XML release.
16
Fred Drakee85c3502000-06-29 19:28:01 +000017"""
Fred Drake327e1872000-08-01 00:05:16 +000018
19
Fredrik Lundh7e0aef02005-12-12 18:54:55 +000020__all__ = ["dom", "parsers", "sax", "etree"]