scrapinghub / slackbot

A chat bot for Slack (https://slack.com).
MIT License
1.26k stars 394 forks source link

added /me message support #125

Closed mreider closed 7 years ago

mreider commented 7 years ago

This adds the support for /me messages so the bot can ponder things to itself in a channel.

For instance, this will create a /me message:

@listen_to('Are you ready?', re.IGNORECASE)
def ready(message):
    message.send_webapi('thinks he is ready',me_message=True)
mreider commented 7 years ago

Need to make some slight changes.