blob: 3f85b3b0a4098f6ea320d6f14104f2a0b83c9b70 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001:mod:`xml.etree` --- The ElementTree API for XML
2================================================
3
4.. module:: xml.etree
5 :synopsis: Package containing common ElementTree modules.
6.. moduleauthor:: Fredrik Lundh <fredrik@pythonware.com>
7
8
9.. versionadded:: 2.5
10
11The ElementTree package is a simple, efficient, and quite popular library for
12XML manipulation in Python. The :mod:`xml.etree` package contains the most
13common components from the ElementTree API library. In the current release,
14this package contains the :mod:`ElementTree`, :mod:`ElementPath`, and
15:mod:`ElementInclude` modules from the full ElementTree distribution.
16
Georg Brandlb19be572007-12-29 10:57:00 +000017.. XXX To be continued!
Georg Brandl8ec7f652007-08-15 14:28:01 +000018
19
20.. seealso::
21
22 `ElementTree Overview <http://effbot.org/tag/elementtree>`_
23 The home page for :mod:`ElementTree`. This includes links to additional
24 documentation, alternative implementations, and other add-ons.