I'm working on a project where I need to detect changes in two XML files, generated at different times.
The XML files contain airport data, runways, obstacles etc. so a lot of nested information, and only a fraction of the airports in the file are relevant.
I've tried the xmldiff module but it takes a long time to run and obviously returns information not relevant to the airports I'm interested in.
I've decided to write a python script to extract only the airports I need from the XML's, and store the data in two separate dictionaries, I will then compare them and try to identify the changes.
Could anyone advise on whether this is the correct way to go about the problem? Any advice at all is much appreciated!
Thanks