Skip to content

Instantly share code, notes, and snippets.

@TechplexEngineer
Created December 9, 2014 16:37
Show Gist options
  • Select an option

  • Save TechplexEngineer/b1d3e89164df86cc915d to your computer and use it in GitHub Desktop.

Select an option

Save TechplexEngineer/b1d3e89164df86cc915d to your computer and use it in GitHub Desktop.
import threading
def set_interval(func, sec):
def func_wrapper():
set_interval(func, sec)
func()
t = threading.Timer(sec, func_wrapper)
t.start()
return t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment