maxux / python-rocketchat-bot

rocket.chat python basic bot
Apache License 2.0
30 stars 18 forks source link

python-rocketchat-bot

rocket.chat python basic bot using dpp

dependancies

emerge -va python-meteor or pip install python-meteor

usage

def hello(bot, message):
    bot.sendMessage(message['rid'], "React from hello command")

rocket = RocketChatBot('username', 'password')
rocket.addPrefixHandler('hello', hello)
rocket.start()