An extensible MUC bot for XMPP.
Project description
Whistler Bot is an XMPP bot written in python using SleekXMPP, which is a requirement. The bot is designed to handle some commands, and it is easy to extend.
Simple usage:
$ whistler myconfig.conf
Create bot programmatically:
from whistler.bot import WhistlerBot
bot = WhistlerBot( "myjid@myserver.com", "mypassword" )
bot.start()
Extending bot
You can extend the bot functionalities, just see for example the code of the whistler console script. In short you can add commands creating a new class from WhistlerBot, and define new functions in the form cmd_<command> plus the command name, for example, to handle the command ping.
from whistler.bot import WhistlerBot
class MyBot(WhistlerBot):
def cmd_ping(self, msg, args):
return "pong"
Example chat
Whistler allows to send private commands in usual jabber (and of course GTalk and Google Hangouts) chat.
Also public commands are available, prefixed them with “!” (exclamation mark), as also reply to a direct mention in the form “whistler:” or “whistler,”, where “whistler” is the nickname of the bot in the MUC:
(Me) whistler: uptime (whistler) 17:33:01 up 2 days, ...
Currently Whistler support a number of features, including tweet from command, shorting url action and so on…
You can see the mixins directory to see a number of examples for whistler and how easy is to extend.
Contributions
Any new mixin or functionality is welcome to Whistler. If you has been developed new one or want new feature, please send me a message or a pull request.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file whistler-1.5.3.tar.gz
.
File metadata
- Download URL: whistler-1.5.3.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bccae2d11d2231230d60a63a1f0f1e6a796afd1960ecb0aff78c27a635753866 |
|
MD5 | 7842876c3f197b7884a852faa69436b3 |
|
BLAKE2b-256 | 5a48bbc9d989c7d7068e3459fdfa7a3a662bdf0caa498856e0e15b0b1ff1ffc6 |