Python Forum
Images for file dupe finder - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: Images for file dupe finder (/thread-29255.html)



Images for file dupe finder - darter - Aug-25-2020

I can find dupes of image files in a linux filesystem and produce thumbnails with PIL. I feel I'm kinda done with the Python part of this and want to learn some other skills to display these images. Would anyone know if a browser and javascript is a reasonable way to go? I want to scroll through about 250 images to visually see if they are really duplicates before deletion. This is mainly just a learning exercise. It would be interesting to me if I can use a browser for this. Thanks.


RE: Images for file dupe finder - snippsat - Aug-25-2020

(Aug-25-2020, 03:30 AM)darter Wrote: Would anyone know if a browser and javascript is a reasonable way to go? I want to scroll through about 250 images to visually see if they are really duplicates before deletion. This is mainly just a learning exercise. It would be interesting to me if I can use a browser for this. Thanks.
To display images in browser using Python,the natural way is to use web-framework like Flask or Django.
Here is older tutorial bye me(2016),that read images from a folder and make a image viewer in browser.


RE: Images for file dupe finder - darter - Aug-26-2020

Thank you. I will check out the frameworks approach. I'll check out the tutorial!