Go to file
2016-08-11 19:31:40 +03:00
.gitignore initial commit 2016-07-25 20:01:51 +02:00
AUTHORS initial commit 2016-07-25 20:01:51 +02:00
example.ini Add [Shared] to config, with 'prefix' and 'owner' opts 2016-08-01 21:12:35 +03:00
hybridbot.py Fixes for multiline messages 2016-08-11 19:31:40 +03:00
LICENSE initial commit 2016-07-25 20:01:51 +02:00
README.md Update README.md 2016-08-01 22:17:05 +03:00
requirements.txt Port to modern irc module 2016-07-30 17:47:11 +03:00

hybridbot

Hybridbot is a bot that relays messages from a IRC channel to an XMPP MUC and vice versa. First of all, you need to install sleekxmpp and irc.

su -c "pip install sleekxmpp irc"
# or
su -c "pip install -r requirements.txt"

It's configuration is simple, you have to create a config file per relay, as this example (remember to change the values):

[Shared]
prefix   = .
owner    = somebody

[IRC]
channel  = #daemons
nick     = pasarela
server   = chat.freenode.net
port     = 6667

[XMPP]
jid      = becario@daemons.cf
password = goodpassword
muc      = testeando@salas.daemons.cf
nick     = pasarela

Most of it is pretty obvious, the only two lines that need explanation are the ones in Shared.

The option "prefix" is a string that gets prefixed before the command like "!help" if prefix=!.

The option "owner" is a string that will be printed when issuing the ".help" command. It can be just something like "drymer on XMPP MUC" or just a name, your choice.

To execute it, just do:

python hybridbot.py myconfig.ini

Or if the config file is named "config.ini", just do:

python hybridbot.py

And on the MUC or the IRC channel, you can issue two commands, ".help" and ".users".