xbotlib/README.md

265 B

xbotlib

XMPP bots for humans

Install

$ pip install xbotlib

Example

from xbotlib import Bot

class EchoBot(Bot):
    def react(self, msg):
        self.reply(f"echo: {msg}")

MyBot()

And then python echo.py.

API

TODO.