Skip to main content

A lightweight Slack bot framework for building modular and maintainable Slack bots.

Project description

Slackle

Slackle Framework PyPI Version Slack + FastAPI Python Version


✨ Slackle up your Slack!

Slackle is a lightweight and magical framework for building Slack apps effortlessly.

→ Visit the Official Website


🚀 Features

  • ⚡️ Slash command routing — Handle /your-command, /like, /magic
  • 💬 Event handling@app_mention, message, reaction_added, etc.
  • 🎨 Slack formatting — Clean markdown and block formatting made easy
  • 🧩 Plugin system — Extend functionality with decorators and custom plugins
  • ⚙️ FastAPI + Slack SDK — Built on proven tools, superfast and flexible

📦 Installation

pip install slackle

🧑‍💻 Getting Started

import os

from slackle import Slackle, SlackleConfig
from slackle.utils.slack import get_user_mention

# Set up slackle configuration
config = SlackleConfig(
    app_token=os.getenv("APP_TOKEN"),
    verification_token=os.getenv("VERIFICATION_TOKEN")
)

# Initialize slackle app
app = Slackle(config=config)

# Add handler for message events
@app.on_event("message")
async def say_hello(slack, user_id, channel_id):
    mention = get_user_mention(user_id)
    print("User ID:", user_id)
    await slack.send_message(
        channel=channel_id,
        message=f"Hello {mention}!",
    )

# Add handler for /say slash command
@app.on_command("/say")
async def say_something(slack, text, user_id, channel_id):
    name = await slack.get_user_name(user_id)
    await slack.send_message(
        channel=channel_id,
        message=f"{name} said: {text}",
    )

📁 See examples/ for more code samples.

🤝 Contribution

We welcome contributions! Check out the Contributing Guide to get started.


🪪 License

MIT License. See the LICENSE file for details.

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

slackle-0.2.6.tar.gz (17.1 kB view details)

Uploaded Source

Built Distribution

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

slackle-0.2.6-py3-none-any.whl (22.7 kB view details)

Uploaded Python 3

File details

Details for the file slackle-0.2.6.tar.gz.

File metadata

  • Download URL: slackle-0.2.6.tar.gz
  • Upload date:
  • Size: 17.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for slackle-0.2.6.tar.gz
Algorithm Hash digest
SHA256 cf664d2ccde2784cc51702a466ab2fd40febfb10e47cc425801c5f04cb122221
MD5 14cecc7370f3b8b65aa63ec6f6aac811
BLAKE2b-256 f13cdca2b792f709ef30860aa629e0d0cf21a1fe3e38c196f7de1cfb51ad5d4e

See more details on using hashes here.

File details

Details for the file slackle-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: slackle-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 22.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for slackle-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 81f0bdab00b6f3dcb9448eb7359f2d31cf3dc39e36ae8ca27f2b495070b5b5bf
MD5 fdf676c60dde81af4c0fc4e82f56def6
BLAKE2b-256 9f09866d9ff61f1be5529053d7fbed01a4fc64cd0db464bd7e18212e858d32e3

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