I am writing a GUI Python
code which should be run every 15 minutes, however when it runs it took more than that (15 minutes +running time). The function I am using is,
animation.FuncAnimation(f,animate,interval=900000)
is there anyway to make the interval variable?
using time.sleep is not good option as this will lead to freezing the GUI screen, I am using Tkinter
which is thread unsafe
Thanks in Advance,