I'm trying to parse xml file using elemnttree. The size of the xml is 1.5GB. I run the code from th terminal and after these lines:
def parse_xml(file_path):
ett = ET.ElementTree(file=file_path)
I'm getting in the console the print "Killed" without any further message. Can anyone know the reason?
Thank you