A wonderful, simple, yet powerful and extendable Slack bot framework
Project description
Slack Machine
Slack Machine is a simple, yet powerful and extendable Slack bot framework. More than just a bot, Slack Machine is a framework that helps you develop your Slack workspace into a ChatOps powerhouse. Slack Machine is built with an intuitive plugin system that lets you build bots quickly, but also allows for easy code organization. A plugin can look as simple as this:
from machine.plugins.base import MachineBasePlugin
from machine.plugins.message import Message
from machine.plugins.decorators import respond_to
class DeploymentPlugin(MachineBasePlugin):
"""Deployments"""
@respond_to(r"deploy (?P<application>\w+) to (?P<environment>\w+)")
async def deploy(self, msg: Message, application, environment):
"""deploy <application> <environment>: deploy application to target environment"""
await msg.say(f"Deploying {application} to {environment}")
Breaking Changes
Dropped support for Python 3.8 (v0.38.0)
As of v0.38.0, support for Python 3.8 has been dropped. Python 3.8 has reached end-of-life on 2024-10-07.
Features
- Get started with mininal configuration
- Built on top of the Slack Events API for smoothly responding to events in semi real-time. Uses Socket Mode so your bot doesn't need to be exposed to the internet!
- Support for rich interactions using the Slack Web API
- High-level API for maximum convenience when building plugins
- Low-level API for maximum flexibility
- Built on top of AsyncIO to ensure good performance by handling communication with Slack concurrently
Plugin API features:
- Listen and respond to any regular expression
- Respond to Slash Commands
- Capture parts of messages to use as variables in your functions
- Respond to messages in channels, groups and direct message conversations
- Respond with reactions
- Respond in threads
- Respond with ephemeral messages
- Send DMs to any user
- Support for blocks
- Support for message attachments [Legacy 🏚]
- Support for interactive elements
- Support for modals
- Listen and respond to any Slack event supported by the Events API
- Store and retrieve any kind of data in persistent storage (currently Redis, DynamoDB, SQLite and in-memory storage are supported)
- Schedule actions and messages
- Emit and listen for events
- Help texts for Plugins
Coming Soon
- Support for shortcuts
- ... and much more
Installation
You can install Slack Machine using pip:
$ pip install slack-machine
or add it to your Poetry project:
poetry add slack-machine
It is strongly recommended that you install slack-machine
inside a
virtual environment!
Usage
-
Create a directory for your Slack Machine bot:
mkdir my-slack-bot && cd my-slack-bot
-
Add a
local_settings.py
file to your bot directory:touch local_settings.py
-
Create a new app in Slack: https://api.slack.com/apps
-
Choose to create an app from an App manifest
-
Copy/paste the following manifest:
manifest.yaml
-
Add the Slack App and Bot tokens to your
local_settings.py
like this:SLACK_APP_TOKEN = "xapp-my-app-token" SLACK_BOT_TOKEN = "xoxb-my-bot-token"
-
Start the bot with
slack-machine
-
...
-
Profit!
Documentation
You can find the documentation for Slack Machine here: https://dondebonair.github.io/slack-machine/
Go read it to learn how to properly configure Slack Machine, write plugins, and more!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file slack_machine-0.39.0.tar.gz
.
File metadata
- Download URL: slack_machine-0.39.0.tar.gz
- Upload date:
- Size: 99.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.13.0 Darwin/24.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7909e92739649d7e4ac9b7b0883198e8c586e8ac02ca86d173a36a580b0090d |
|
MD5 | da4f0efbc4887f5dfda119a3854df348 |
|
BLAKE2b-256 | 6fbdb7830bd2b9f677646b47cd2798bba96767b8fc3ac67642b8750e56af5df6 |
File details
Details for the file slack_machine-0.39.0-py3-none-any.whl
.
File metadata
- Download URL: slack_machine-0.39.0-py3-none-any.whl
- Upload date:
- Size: 117.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.13.0 Darwin/24.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd9f7a8f2ce9114338f41964e893bfa3c9514cf22573f8c4ceae3b82b35d179c |
|
MD5 | c1093c877669aea1b7c1c3ddf2dbbbde |
|
BLAKE2b-256 | 15c8b596781d3442c5aaa39985c2a4f108e0033122b73399c77161eb7efb3e6d |