Comparing zip files content using Python

Recently I wrote a script to compare the zip files in one location with another folders in a separate location. To illustrate this better have a look at the following folders structure:

To compare the files, I am using md5 hash to ensure that both files match exactly as this was generated automatically from the server.

This saves a significant amount of time in comparison to comparing the files manually.

Here is the link to the Python script if you are interested.