LaZBotΒΆ

LaZBot is a Python framework to make it easy to write your own Slack bot. It provides a number of utilities to allow for easy hooks for events, message parsing, event scheduling, and navigating the Slack API.

from app import bot

@bot.listen("@me: hello!")
def hello(user, channel):
   bot.post(
      channel=channel,
      text="Hello {!s}".format(user),
   )

Contents:

https://secure.travis-ci.org/jdost/lazbot.png?branch=master

Navigation