Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :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 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 9 | The ElementTree package is a simple, efficient, and quite popular library for |
| 10 | XML manipulation in Python. The :mod:`xml.etree` package contains the most |
| 11 | common components from the ElementTree API library. In the current release, |
| 12 | this package contains the :mod:`ElementTree`, :mod:`ElementPath`, and |
| 13 | :mod:`ElementInclude` modules from the full ElementTree distribution. |
| 14 | |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 15 | .. XXX To be continued! |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 16 | |
| 17 | |
| 18 | .. seealso:: |
| 19 | |
| 20 | `ElementTree Overview <http://effbot.org/tag/elementtree>`_ |
| 21 | The home page for :mod:`ElementTree`. This includes links to additional |
| 22 | documentation, alternative implementations, and other add-ons. |
| 23 | |