It appears as if root.mainloop() blocks any attempt to update a textbox with text. I am trying to create a kind of status text area that will display strings of messages as I am running a python program.
top.mainloop()
chat.insert(tkinter.END, "Hello")
the insert never gets called. I know that the mainloop is blocking the call, so my question is, how does one get around this block to update the textbox with messages? The second line is a line I would like to have throughout my code (obviously with a different line of text other than Hello).