Skip to main content

A framework for Slack RTM bots.

Project description

This library provides a simple asyncio based interface for writing RTM <https://api.slack.com/rtm> bots for Slack. Many distinct functions can be run through a single Slack bot plugin, triggered by user defined commands (e.g. !myCommand).

Example

A bot which can be triggered by the message !greet Guido looks like this:

from asyncbots.bot import SlackBot, register
from asyncbots.command import MessageCommand
from pyparsing import alphas, Word

class MyBot(SlackBot)
    def __init__(self):
        self.name = 'My Bot'

        # Match 'greet' followed by any word
        self.expr = 'greet' + Word(alphas).setResultsName('user')

    @register()
    async def handler(self, sender, channel, parsed_message):
        return MessageCommand('Hello ' + parsed_message['user'])

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

asyncbots-0.1.5.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

asyncbots-0.1.5-py3-none-any.whl (16.8 kB view details)

Uploaded Python 3

File details

Details for the file asyncbots-0.1.5.tar.gz.

File metadata

  • Download URL: asyncbots-0.1.5.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for asyncbots-0.1.5.tar.gz
Algorithm Hash digest
SHA256 087bf75bf47d9a61f83b9697a8e27abe4b4271e66805c14d72e7d4af220a412d
MD5 c8a697845101378c67d58c727faec56b
BLAKE2b-256 305c26782d2ecdd1736d48860baf5555e2fb6b849d729051b03809190eca0b26

See more details on using hashes here.

File details

Details for the file asyncbots-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for asyncbots-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 0a33df8c99cb8a6a1c970e7ee418c00d3cf478913a15734019047b64f7e06dc0
MD5 b61c875461ea78a4f09abfabbd71608a
BLAKE2b-256 2132774df3d44850d02a2887931e7915ec2bd6bc60e2b2727ee296a6a5a84851

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page