best module for parsing a small xml file

Mark McEahern mark at mceahern.com
Wed Mar 24 10:07:25 EST 2004


Geiregat Jonas wrote:
> What's the best module for pasring a small xml file ?

from xml.dom import minidom
doc = minidom.parse(filename)

// m





More information about the Python-list mailing list