2017-05-23 15:05:27 -04:00
|
|
|
# See readme.md for instructions on running this code.
|
|
|
|
|
|
|
|
|
|
|
|
class HelloWorldHandler(object):
|
|
|
|
def usage(self):
|
|
|
|
return '''
|
|
|
|
This is a boilerplate bot that responds to a user query with
|
|
|
|
"beep boop", which is robot for "Hello World".
|
|
|
|
|
|
|
|
This bot can be used as a template for other, more
|
|
|
|
sophisticated, bots.
|
|
|
|
'''
|
|
|
|
|
|
|
|
def handle_message(self, message, client, state_handler):
|
|
|
|
content = 'beep boop'
|
2017-05-24 15:49:44 -04:00
|
|
|
client.send_reply(message, content)
|
2017-05-23 15:05:27 -04:00
|
|
|
|
|
|
|
handler_class = HelloWorldHandler
|