cpython/Lib/xml/__init__.py

14 lines
410 B
Python
Raw Normal View History

2000-06-29 16:28:01 -03:00
"""Core XML support for Python.
This package contains three sub-packages:
dom -- The W3C Document Object Model. This supports DOM Level 1 +
Namespaces.
parser -- Python wrappers for XML parsers (currently only supports Expat).
sax -- The Simple API for XML, developed by XML-Dev, led by David
2000-07-01 01:58:47 -03:00
Megginson and ported to Python by Lars Marius Garsholm. This
supports the SAX 2 API.
2000-06-29 16:28:01 -03:00
"""