Re: XML DOM, but in chunks

2007-11-01 Thread Stefan Behnel
Tommy Nordgren wrote: >> On 31 okt 2007, at 21.24, Sean Davis wrote: >> >>> I have some very large XML files that are basically recordsets. I >>> would like to access each record, one-at-a-time, and I particularly >>> like the ElementTree library for accessing the data. Is there a way >>> to have

Re: XML DOM, but in chunks

2007-10-31 Thread George Sakkis
On Oct 31, 4:43 pm, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote: > On Wed, 31 Oct 2007 20:24:43 +, Sean Davis wrote: > > I have some very large XML files that are basically recordsets. I > > would like to access each record, one-at-a-time, and I particularly > > like the ElementTree lib

Re: XML DOM, but in chunks

2007-10-31 Thread Tommy Nordgren
On 31 okt 2007, at 22.36, Tommy Nordgren wrote: > > On 31 okt 2007, at 21.24, Sean Davis wrote: > >> I have some very large XML files that are basically recordsets. I >> would like to access each record, one-at-a-time, and I particularly >> like the ElementTree library for accessing the data. I

Re: XML DOM, but in chunks

2007-10-31 Thread Tommy Nordgren
On 31 okt 2007, at 21.24, Sean Davis wrote: > I have some very large XML files that are basically recordsets. I > would like to access each record, one-at-a-time, and I particularly > like the ElementTree library for accessing the data. Is there a way > to have ElementTree read only one record

Re: XML DOM, but in chunks

2007-10-31 Thread Marc 'BlackJack' Rintsch
On Wed, 31 Oct 2007 20:24:43 +, Sean Davis wrote: > I have some very large XML files that are basically recordsets. I > would like to access each record, one-at-a-time, and I particularly > like the ElementTree library for accessing the data. Is there a way > to have ElementTree read only on

XML DOM, but in chunks

2007-10-31 Thread Sean Davis
I have some very large XML files that are basically recordsets. I would like to access each record, one-at-a-time, and I particularly like the ElementTree library for accessing the data. Is there a way to have ElementTree read only one record of the data at a time? Alternatively, are there other