[EMAIL PROTECTED] a écrit :
> I want to parse this XML file:
> 
> <?xml version="1.0" ?>
> 
> <text>
> 
> <text:one>
> <file>filename</file>
> <contents>
> Hello
> </contents>
> </text:one>
> 
> <text:two>
> <file>filename2</file>
> <contents>
> Hello2
> </contents>
> </text:two>
> 
> </text>
> 
> This XML will be in a file called filecreate.xml
> 
> As you might have guessed, I want to create files from this XML file
> contents, so how can I do this?

Using a sax parser might be the best solution here.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to