This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image | |
import filetype | |
class SimpleThumbnailer(ThumbnailGenerator): | |
def make_thumbnail(self, inputfile_path, outputfile_path, **kwargs): | |
""" | |
Args: | |
inputfile_path: a path to a file on disk to create a thumbnail from | |
outputfile_path: a path to a file on disk where the thumbnail will be written to | |