Skip to content

Commit

Permalink
Pushing mvc_audio.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jilliennelapid authored Dec 10, 2023
1 parent 7b49bd4 commit 7fef218
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions mvc_audio.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from audio_model import Model
from audio_view import View
from audio_controller import Controller
import tkinter as tk


class App(tk.Tk):
def __init__(self):
super().__init__()
self.title("Audio Downloader")
m = Model()
v = View(self)
v.grid(row=0, column=0, padx=10, pady=10)
controller = Controller(m, v)
View.set_controller(v, controller)


if __name__ == '__main__':
app = App()
app.mainloop()

0 comments on commit 7fef218

Please sign in to comment.