XMPP bots for humans
Go to file
Luke Murphy 8369689a71
First working prototype
2021-01-10 14:10:39 +01:00
.gitignore First working prototype 2021-01-10 14:10:39 +01:00
CHANGELOG.md First working prototype 2021-01-10 14:10:39 +01:00
LICENSE First working prototype 2021-01-10 14:10:39 +01:00
README.md First working prototype 2021-01-10 14:10:39 +01:00
poetry.lock First working prototype 2021-01-10 14:10:39 +01:00
pyproject.toml First working prototype 2021-01-10 14:10:39 +01:00
xbotlib.py First working prototype 2021-01-10 14:10:39 +01:00

README.md

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.