Skip to content

Instantly share code, notes, and snippets.

@tomjakubowski
Created December 23, 2012 22:25
Show Gist options
  • Save tomjakubowski/4366442 to your computer and use it in GitHub Desktop.
Save tomjakubowski/4366442 to your computer and use it in GitHub Desktop.
import time
def repeat(delay=0.5):
def repeat_decorator(fn):
def wrapped(*args):
while True:
time.sleep(delay)
fn(*args)
return wrapped
return repeat_decorator
@repeat()
def hello(who):
print "Hello"
hello("world")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment