From: Robert Somerville on
Hi;

I am about to get my feet wet with Python XML, there appears to be many
libraries ... can someone recommend
a good package to use on Ubuntu ???


regards;
Robert Somerville
From: Philip Semanchuk on

On May 19, 2010, at 1:54 PM, Robert Somerville wrote:

> Hi;
>
> I am about to get my feet wet with Python XML, there appears to be
> many libraries ... can someone recommend
> a good package to use on Ubuntu ???

Hi Robert,
xml.etree.ElementTree is in the Python standard library as of version
2.5. It was a popular 3rd party package even before it became part of
the standard library, so a lot of code uses it. It's a good place to
start.

HTH
Philip