Staging
v0.5.1
Revision 5757429130b8bba026e75d358ef0494a6ac0aed8 authored by Benjamin Peterson on 27 November 2010, 14:46:13 UTC, committed by Benjamin Peterson on 27 November 2010, 14:46:13 UTC
1 parent 55d86e6
Raw File
xml.etree.rst
:mod:`xml.etree` --- The ElementTree API for XML
================================================

.. module:: xml.etree
   :synopsis: Package containing common ElementTree modules.
.. moduleauthor:: Fredrik Lundh <fredrik@pythonware.com>


The ElementTree package is a simple, efficient, and quite popular  library for
XML manipulation in Python.    The :mod:`xml.etree` package contains the most
common components  from the ElementTree API library.  In the current release,
this package contains the :mod:`ElementTree`,  :mod:`ElementPath`, and
:mod:`ElementInclude` modules from the full  ElementTree distribution.

.. XXX To be continued!


.. seealso::

   `ElementTree Overview <http://effbot.org/tag/elementtree>`_
      The home page for :mod:`ElementTree`.  This includes links  to additional
      documentation, alternative implementations, and  other add-ons.

back to top