For *really* big files, have you considered streaming parsers? `sax` is old-school but reliable.
Or, if you’re okay with external tools, `xmlstarlet` (command line) + Python subprocess can be a hacky but effective combo.
Just saying—sometimes the best Python XML parser isn’t pure Python.
Or, if you’re okay with external tools, `xmlstarlet` (command line) + Python subprocess can be a hacky but effective combo.
Just saying—sometimes the best Python XML parser isn’t pure Python.
