Python Forum

Full Version: Images for file dupe finder
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
(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.
Thank you. I will check out the frameworks approach. I'll check out the tutorial!