Kalle Anke wrote: > I've used DOM-based libraries in other languages, is PyXML the library to > use?
I would start off with minidom; a tutorial I once wrote can be found here: http://www.boddie.org.uk/python/XML_intro.html That should demonstrate some minor differences between PyXML-style DOMs and those for languages like Java. Should you need a faster DOM implementation, you might want to look at libxml2dom: http://www.boddie.org.uk/python/libxml2dom.html It's a pure Python module that uses the lower levels of libxml2's own Python bindings, so if you already have libxml2 plus bindings installed, it should be very convenient. Although libxml2dom isn't by any means complete, I do use it myself and would welcome any feedback which would make it better. Paul -- http://mail.python.org/mailman/listinfo/python-list