I have a gui that needs to have the information in its labels refresh every so often and I have a function that would do so. I was wondering how can i call that function every 10 seconds automatically.
Currently I have a button that refreshes the information but that has to be manually pressed.
bRefreshSystem = tk.Button(text="System Refresh", command=refreshSystem)
Currently my solution does work but its not optimal, so how can i call refreshSystem automatically every 10 seconds?