python-zulip-api/bots/helloworld/helloworld.py

19 lines
537 B
Python
Raw Normal View History

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, bot_handler, state_handler):
2017-05-23 15:05:27 -04:00
content = 'beep boop'
bot_handler.send_reply(message, content)
2017-05-23 15:05:27 -04:00
handler_class = HelloWorldHandler