I developed a simple Python application doing some stuff, then I decided to add a simple GUI using Tkinter.
The problem is that, while the main function is doing its stuff, the window freezes.
I know it's a common problem and I've already read that I should use multithreads (very complicated, because the function updates the GUI too) or divide my code in different function, each one working for a little time. Anyway I don't want to change my code for such a stupid application.
My question is: is it possible there's no easy way to update my Tkinter window every second? I just want to apply the KISS rule!
I'll give you a pseudo code example below that I tried but didn't work:
    class Gui:
        [...]#costructor and other stuff
        def refresh(self):
            self.root.update()
            self.root.after(1000,self.refresh)
        def start(self):
            self.refresh()
            doingALotOfStuff()
    #outside
    GUI = Gui(Tk())
    GUI.mainloop()
It simply will execute refresh only once, and I cannot understand why.
Thanks a lot for your help.
 
     
     
     
     
    