logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

__init__.py (557B)


  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"]