コード例 #1
0
ファイル: bot_test.py プロジェクト: mattconnell/bavi
 def handler(bot, source, target, message, match):
     bot.say(target, 'Matched {}'.format(match.group(1)))
コード例 #2
0
ファイル: bot_test.py プロジェクト: mattconnell/bavi
 def handler2(bot, source, target, message, **kwargs):
     bot.say(target, 'This is a second example')
コード例 #3
0
ファイル: bot_test.py プロジェクト: mattconnell/bavi
 def important_handler(bot, source, target, message, match):
     bot.say(target, 'Important {}'.format(match.group(1)))