This repository has been archived on 2024-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
xbotlib/examples/echo.py

17 lines
300 B
Python

from xbotlib import Bot
class EchoBot(Bot):
"""Gives back what you sent it.
Just direct message the bot and see if you get back what you sent.
"""
def react(self, message):
"""Send back what we get."""
self.reply(to=message.sender, body=message.body)
EchoBot()