Skip to content

Instantly share code, notes, and snippets.

@Pacifist117
Created April 15, 2013 14:45
Show Gist options
  • Save Pacifist117/5388632 to your computer and use it in GitHub Desktop.
Save Pacifist117/5388632 to your computer and use it in GitHub Desktop.
#!/usr/bin/python3
""" countdown.py - A countdown function for syncing streams
"""
def countdown(phenny,input):
phenny.say("3")
phenny.say("2")
phenny.say("1")
phenny.say("GO!")
countdown.commands = ['countdown','sync']
countdown.priority = 'medium'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment