Compare images Python PIL
To check does jpg files are exactly the same use pillow library: from PIL import Image from PIL import ImageChops image_one = Image.open(path_one) image_two = Image.open(path_two) diff = ImageChops.difference(image_one, image_two) if diff.getbbox(): print(“images are different”) else: print(“images are the same”)