Re: Confused: looking for a simple XML parser

2008-08-16 Thread Kay Schluehr
On 16 Aug., 02:21, Rex [EMAIL PROTECTED] wrote: Hello, I am a Python programmer facing my first small XML project. I am looking to find a simple tool to take an XSD file and convert the XSD tree structure to another text format (e.g. an adjacency matrix for the tree's graph), or convert one

Confused: looking for a simple XML parser

2008-08-15 Thread Rex
Hello, I am a Python programmer facing my first small XML project. I am looking to find a simple tool to take an XSD file and convert the XSD tree structure to another text format (e.g. an adjacency matrix for the tree's graph), or convert one xml file format definition into another, non-xml one.

Re: Confused: looking for a simple XML parser

2008-08-15 Thread Marek Kubica
Hi, On Fri, 15 Aug 2008 17:21:56 -0700, Rex wrote: What tool should I use? For easy stuff ElementTree (bundled with Python 2.5 but also available to older versions), for more complex stuff lxml (which extends the ET API, so the learning curve is incremental). regards, Marek --