A python script that will scan a folder for images periodically, and show the most recent one in a number of pyplots.
The script uses only default python libraries, and is written for Python3.
Type: int
Default: 1000
Sets how many milliseconds between each scan of the image folderType: bool
Default: True
If True, the program will start the previewers as soon as they're initialized
Else, it must be started with the "start" methodType: str
Default: the current working directory
Defines what folder to scanType: str
Default: png
Defines what type of image the previewer will scan for
NOTE: case-sensitiveType: int
Default: 1
Defines how many windows will be ran
from ImagePreview import ImagePreviewer ImagePreviewer()from ImagePreview import ImagePreviewer ImagePreviewer(path='C:/Users/User/Pictures/', ext='jpg')from ImagePreview import ImagePreviewer ImagePreviewer(previewer_count=2)from ImagePreview import ImagePreviewer impr = ImagePreviewer(write_on_creation=False) # Your code goes here... impr.start()