Posts: 4,655
Threads: 1,498
Joined: Sep 2016
a script i want to make real quick because i want to use it. what want is something that will display a picture, given a file that has a (huge ... 8000+) list of image files, and prompt me for input and record that input with the file path to another file. as soon as it gets the input it takes down the image it is for. then it records the info. then it moves on to the next picture in the next file path in the list, displaying that picture and prompting for its input. i have thousands of old family pictures to go through. i expect this will take many hours. but, i am at home all the time so this is feasible.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,655
Threads: 1,498
Joined: Sep 2016
pip search didn't find "display_screen". where does that come from? what is the "typing" variable? just a pseudo-object in abstraction code? my original idea was to launch a command as a background process, tracking its process ID, then signal it to quit when the terminal input comes in. how would your way do this? i haven't written any code, yet. i'm hoping to do this next weekend.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,655
Threads: 1,498
Joined: Sep 2016
Apr-14-2020, 01:23 AM
(This post was last modified: Apr-14-2020, 01:23 AM by Skaperen.)
(Apr-13-2020, 02:37 PM)snippsat Wrote: (Apr-12-2020, 05:38 AM)Skaperen Wrote: a script i want to make real quick because i want to use it. what want is something that will display a picture
Then why not try to put something together yourself
Pillow is a natural first tough when want to display images in Python.
for some things, i like to survey other ideas, first
(Apr-13-2020, 02:37 PM)snippsat Wrote: (Apr-12-2020, 05:38 AM)Skaperen Wrote: prompt me for input and record that input with the file path to another file. as soon as it gets the input it takes down the image it is for. then it records the info. then it moves on to the next picture in the next file path in the list
Do you want to also move file(with eg new filename from input) after it has show eg im.show()
Pillow,or just write some info about image with also file path info concatenate to it?
i might move the file. but i think it would be better to make some hard links or soft links, instead. i might just append it all
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.