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 _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
