I have many zip files which are big. Inside each zip file I have many XML files all of which have the same structure. I want to extract specific information under certain namespaces from each of this XML files. I was able to hardcode it with ElementTree for the case of one file. But I don't really know how to do it for all these files. Is there any way to get information from all xml files without unzipping the folders(I am afraid I won't just have the memory for this)?
P.S. I am definitely not asking to write a code for me. But probably you have done smth like this and can recommend a library or a function for this in Python :)