Metadata-Version: 2.1
Name: slixmppbot
Version: 1.0.3
Summary: A framework for writing Jabber/XMPP bots
Home-page: https://github.com/s-nt-s/XmppBot
Author: s-nt-s
Author-email: santos82h@gmail.com
License: GPLv3
Keywords: xmpp,bot
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown

The XmppBot framework is powered by [Slixmpp](https://slixmpp.readthedocs.io/)
and allows you to easily write bots that use the XMPP protocol.
You can create commands by decorating functions in your subclass
or customize the bot’s operation completely. MUCs are also supported.

You can see some examples in [`examples` folder](https://github.com/s-nt-s/XmppBot/tree/master/examples).

You can install and unsintall with:

```
# install
pip3 install slixmppbot
# uninstall
pip3 uninstall slixmppbot
```

or

```
# install
python3 setup.py install --record files.txt
# uninstall
xargs rm -rf < files.txt
```

