2000-06-29 19:28:01 +00:00
|
|
|
"""Core XML support for Python.
|
|
|
|
|
2005-12-12 18:54:55 +00:00
|
|
|
This package contains four sub-packages:
|
2000-06-29 19:28:01 +00:00
|
|
|
|
|
|
|
dom -- The W3C Document Object Model. This supports DOM Level 1 +
|
|
|
|
Namespaces.
|
|
|
|
|
2000-08-01 00:05:16 +00:00
|
|
|
parsers -- Python wrappers for XML parsers (currently only supports Expat).
|
2000-06-29 19:28:01 +00:00
|
|
|
|
|
|
|
sax -- The Simple API for XML, developed by XML-Dev, led by David
|
2000-10-23 18:09:50 +00:00
|
|
|
Megginson and ported to Python by Lars Marius Garshol. This
|
2000-07-01 04:58:47 +00:00
|
|
|
supports the SAX 2 API.
|
2005-12-12 18:54:55 +00:00
|
|
|
|
|
|
|
etree -- The ElementTree XML library. This is a subset of the full
|
|
|
|
ElementTree XML release.
|
|
|
|
|
2000-06-29 19:28:01 +00:00
|
|
|
"""
|
2000-08-01 00:05:16 +00:00
|
|
|
|
|
|
|
|
2005-12-12 18:54:55 +00:00
|
|
|
__all__ = ["dom", "parsers", "sax", "etree"]
|