blob: c27a137843141e6b50bcaa774209f66f4cfc1ccd [file] [log] [blame]
Fred Drakee85c3502000-06-29 19:28:01 +00001"""Core XML support for Python.
2
3This package contains three sub-packages:
4
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 Drakeb19948b2000-07-02 13:52:21 +000011 Megginson and ported to Python by Lars Marius Garshol. This
Paul Prescod73678da2000-07-01 04:58:47 +000012 supports the SAX 2 API.
Fred Drakee85c3502000-06-29 19:28:01 +000013"""
Fred Drake327e1872000-08-01 00:05:16 +000014
15
Fred Drake57500172000-08-04 03:14:55 +000016try:
17 import _xmlplus
18except ImportError:
19 pass
20else:
21 import sys
22 sys.modules[__name__] = _xmlplus