A simple app built with tkinter and pyinstaller to organize your files.
- Select a folder full of duplicate images you want sorted.
- The app scans your folder and identifies duplicate images by comparing file hashes.
- A prompt window will confirm you want to move your duplicates.
- All duplicates are moved into a new 'duplicates' subfolder.
This repo contains the source code and can be used for learning the tools, check the releases page if you'd like the standalone app.
Available for macOS and windows.
Build command:
MacOS
pyinstaller --onefile --windowed --icon=app_icon.icns --name "DuplicateImageFinder_v1.0.0" find_duplicate_images.py
Windows
pyinstaller --onefile --windowed --icon=dupy.ico --name "DuplicateImageFinder_v1.0.0" find_duplicate_images_windows.py