[Tutor] Managing XML in Python
Kent Johnson
kent37 at tds.net
Fri Feb 23 13:13:10 CET 2007
Ketan Maheshwari wrote:
> Hi:
> I have to manage XML files through python. The activities include,
> create, update and retrieve information from the XML files.
>
> I would be thankful for pointers to tutorials, APIs and suggestions.
Take a look at the ElementTree module. In Python 2.5 it is built in:
http://docs.python.org/lib/module-xml.etree.ElementTree.html
For older Pythons, and for more extensive docs, see
http://effbot.org/zone/element.htm
Kent
More information about the Tutor
mailing list