__init__.py 557 B

1234567891011121314151617181920
  1. """Core XML support for Python.
  2. This package contains four sub-packages:
  3. dom -- The W3C Document Object Model. This supports DOM Level 1 +
  4. Namespaces.
  5. parsers -- Python wrappers for XML parsers (currently only supports Expat).
  6. sax -- The Simple API for XML, developed by XML-Dev, led by David
  7. Megginson and ported to Python by Lars Marius Garshol. This
  8. supports the SAX 2 API.
  9. etree -- The ElementTree XML library. This is a subset of the full
  10. ElementTree XML release.
  11. """
  12. __all__ = ["dom", "parsers", "sax", "etree"]