Skip to content

Instantly share code, notes, and snippets.

'''
Python 3 slideshow using tkinter and pillow (PIL)
Usage: python3 slideShow.py [img_directory]
'''
import tkinter as tk
from PIL import Image, ImageTk
import time
import sys
import os