Created
January 13, 2016 00:35
-
-
Save maxpowa/5e0901d7b70493067352 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding=utf-8 | |
""" | |
repeat_msg.py - Example interval module | |
Licensed under WTFPL (https://en.wikipedia.org/wiki/WTFPL) | |
""" | |
from sopel.module import interval | |
@interval(60) # Every 60 seconds | |
def do_the_thing(bot): | |
bot.msg('#some_channel', '60 seconds has elapsed') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment