I found this snippet of code somewhere:
t = Timer(10.0, hello)
t.start()
Where 10.0 is the time in seconds for when the timer is supposed to execute, and hello is the method that will run when the time parameter is met. However, I can't find the module this function belongs to. Any help?