Skip to content

Instantly share code, notes, and snippets.

View ReddyKilowatt's full-sized avatar

Reddy Kilowatt ReddyKilowatt

View GitHub Profile
@ReddyKilowatt
ReddyKilowatt / controller.py
Created May 7, 2018 22:11
Model View Controller using Tkinter
try:
import Tkinter as Tk # python 2
except ModuleNotFoundError:
import tkinter as Tk # python 3
from model import Model
from view import View
class Controller: