I am making a GUI using Tkinter with two main buttons: "Start" and "Stop". Could you, please, advise on how to make the "Stop" button to terminate the already running function called by "Start" button for the following code?
The problem as you may expect is that the entire window including the "Stop" button is stuck/not responsive while "start" function is running.
The "start" function extracts some information from a number of html files which may take pretty while (for 20 huge files it can take around 10 minutes), and I would like for a user to be able to interrupt that process at any moment.
from tkinter import *
import Ostap_process_twitter_file_folderroot = Tk()def start (event): Ostap_process_twitter_file_folder.start_extraction()def stop (event):# stop "start" functionlabel1 = Label(root, text = "source folder").grid(row=0)label2 = Label(root, text = "output folder").grid(row=1)e_sF = Entry(root)e_oF = Entry(root)e_sF.grid(row=0, column=1)e_oF.grid(row=1, column=1)startButton = Button(root, text = "start")startButton.grid(row=2)startButton.bind("<Button-1>", start)stopButton = Button(root, text = "stop")stopButton.grid(row=2, column=1)stopButton.bind("<Button-1>", stop)root.mainloop()
I suppose that using threads will be a solution for this issue. Although I've been looking through similar questions here on stackoverflow and various introductory resources on threading in Python (not that much introductory, btw), it is still not clear for me how exactly to implement those suggestions to this particular case.