13 Ağustos 2007 Pazartesi

Efficiently process big xml files with cElementTree

#ElementTree is becoming python's standard XML framework.
#It also supports processing data as it coming/loading.

import cElementTree

for event, elem in cElementTree.iterparse(file):
if elem.tag == "record":
# ... process record element ...
elem.clear()


0 Comments: