Re.: reading xml from python - Sum-up

2010-05-12 Thread Hvidberg, Martin
s email is made of 100% recycled bytes ... From: Hvidberg, Martin Sent: Tuesday, May 11, 2010 2:54 PM To: 'python-list@python.org' Subject: reading xml from python I'm looking for at way to read (and later write) small simple .xml file from Python.

Re: reading xml from python

2010-05-11 Thread Philip Semanchuk
On May 11, 2010, at 8:54 AM, Hvidberg, Martin wrote: I'm looking for at way to read (and later write) small simple .xml file from Python. e.g. I would like to read the following from a small ini.xml file into a dictionary. default False False UBMlight True I would prefer a relative si

Re: reading xml from python

2010-05-11 Thread Chris Rebert
On Tue, May 11, 2010 at 5:54 AM, Hvidberg, Martin wrote: > I'm looking for at way to read (and later write) small simple .xml file from > Python. > > e.g. I would like to read the following from a small ini.xml file into a > dictionary. > > > > >  default >  False >  False >  UBMlight >  True >

reading xml from python

2010-05-11 Thread Hvidberg, Martin
I'm looking for at way to read (and later write) small simple .xml file from Python. e.g. I would like to read the following from a small ini.xml file into a dictionary. default False False UBMlight True I would prefer a relative simple (not too much creating new classes) way to do thi