Re: Recipe 534109: XML to Python data structure

2009-01-06 Thread Rock
Elementtree is now part of the python distribution. I am using it in a Django app I created for a client to extract data from XML provided by a web service. It works well but the documentation could be clearer. On Jan 6, 9:27 am, "shi shaozhong" wrote: > I am reading in a xml from a web service.

Re: Recipe 534109: XML to Python data structure

2009-01-06 Thread Ben Eliott
Perhaps try: http://www.crummy.com/software/BeautifulSoup/ is awesome and has good documentation On 6 Jan 2009, at 15:27, shi shaozhong wrote: > > I am reading in a xml from a web service. I wish to find a Python > script to turn the xml into a Python data array for further > manipulation and t