Skip to content

Instantly share code, notes, and snippets.

@bob-white
bob-white / resizerMVC.py
Created May 26, 2018 05:05 — forked from moogsigan/resizerMVC.py
An attempt to create the file resizer as an MVC style app
#view: UI, keep it dumb
import tkinter as tk
from PIL import Image
import os
import shutil
class Model():
def __init__(self, xTex, yTex, prevExt, newExt):
#in Controller send Model(xTex, yTex, prevExt, newExt) from
#View variableList, which collects inputs from UI