Skip to main content

Slack API clients for Web API and RTM API

Project description

A client for Slack, which supports the Slack Web API and Real Time Messaging (RTM) API.

build-status windows-build-status codecov doc-status pypi-version python-version

Overview

Whether you’re building a custom app for your team, or integrating a third party service into your Slack workflows, Slack Developer Kit for Python allows you to leverage the flexibility of Python to get your project up and running as quickly as possible.

Documentation

For comprehensive method information and usage examples, see the full documentation.

If you’re building a project to receive content and events from Slack, check out the Python Slack Events API Adapter library.

You may also review our Development Roadmap in the project wiki.

Requirements and Installation

We recommend using PyPI to install Slack Developer Kit for Python

pip install slackclient

Of course, if you prefer doing things the hard way, you can always implement Slack Developer Kit for Python by pulling down the source code directly into your project:

git clone https://github.com/slackapi/python-slackclient.git
pip install -r requirements.txt

Getting Help

If you get stuck, we’re here to help. The following are the best ways to get assistance working through your issue:

  • Use our Github Issue Tracker for reporting bugs or requesting features.

  • Visit the Bot Developer Hangout for getting help using Slack Developer Kit for Python or just generally bond with your fellow Slack developers.

Basic Usage

The Slack Web API allows you to build applications that interact with Slack in more complex ways than the integrations we provide out of the box.

This package is a modular wrapper designed to make Slack Web API calls simpler and easier for your app. Provided below are examples of how to interact with commonly used API endpoints, but this is by no means a complete list. Review the full list of available methods here.

Sending a message

The primary use of Slack is sending messages. Whether you’re sending a message to a user or to a channel, this method handles both.

To send a message to a channel, use the channel’s ID. For IMs, use the user’s ID.

import os
from slackclient import SlackClient

slack_token = os.environ["SLACK_API_TOKEN"]
sc = SlackClient(slack_token)

sc.api_call(
  "chat.postMessage",
  channel="C0XXXXXX",
  text="Hello from Python! :tada:"
)

There are some unique options specific to sending IMs, so be sure to read the channels section of the chat.postMessage page for a full list of formatting and authorship options.

Sending an ephemeral message, which is only visible to an assigned user in a specified channel, is nearly the same as sending a regular message, but with an additional user parameter.

import os
from slackclient import SlackClient

slack_token = os.environ["SLACK_API_TOKEN"]
sc = SlackClient(slack_token)

sc.api_call(
  "chat.postEphemeral",
  channel="C0XXXXXX",
  text="Hello from Python! :tada:",
  user="U0XXXXXXX"
)

See chat.postEphemeral for more info.

Replying to messages and creating threads

Threaded messages are just like regular messages, except thread replies are grouped together to provide greater context to the user. You can reply to a thread or start a new threaded conversation by simply passing the original message’s ts ID in the thread_ts attribute when posting a message. If you’re replying to a threaded message, you’ll pass the thread_ts ID of the message you’re replying to.

A channel or DM conversation is a nearly linear timeline of messages exchanged between people, bots, and apps. When one of these messages is replied to, it becomes the parent of a thread. By default, threaded replies do not appear directly in the channel, instead relegated to a kind of forked timeline descending from the parent message.

import os
from slackclient import SlackClient

slack_token = os.environ["SLACK_API_TOKEN"]
sc = SlackClient(slack_token)

sc.api_call(
  "chat.postMessage",
  channel="C0XXXXXX",
  text="Hello from Python! :tada:",
  thread_ts="1476746830.000003"
)

By default, reply_broadcast is set to False. To indicate your reply is germane to all members of a channel, set the reply_broadcast boolean parameter to True.

import os
from slackclient import SlackClient

slack_token = os.environ["SLACK_API_TOKEN"]
sc = SlackClient(slack_token)

sc.api_call(
  "chat.postMessage",
  channel="C0XXXXXX",
  text="Hello from Python! :tada:",
  thread_ts="1476746830.000003",
  reply_broadcast=True
)

Note: While threaded messages may contain attachments and message buttons, when your reply is broadcast to the channel, it’ll actually be a reference to your reply, not the reply itself. So, when appearing in the channel, it won’t contain any attachments or message buttons. Also note that updates and deletion of threaded replies works the same as regular messages.

See the Threading messages together article for more information.

Deleting a message

Sometimes you need to delete things.

import os
from slackclient import SlackClient

slack_token = os.environ["SLACK_API_TOKEN"]
sc = SlackClient(slack_token)

sc.api_call(
  "chat.delete",
  channel="C0XXXXXX",
  ts="1476745373.000002"
)

See chat.delete for more info.

Adding or removing an emoji reaction

You can quickly respond to any message on Slack with an emoji reaction. Reactions can be used for any purpose: voting, checking off to-do items, showing excitement — and just for fun.

This method adds a reaction (emoji) to an item (file, file comment, channel message, group message, or direct message). One of file, file_comment, or the combination of channel and timestamp must be specified.

import os
from slackclient import SlackClient

slack_token = os.environ["SLACK_API_TOKEN"]
sc = SlackClient(slack_token)

sc.api_call(
  "reactions.add",
  channel="C0XXXXXXX",
  name="thumbsup",
  timestamp="1234567890.123456"
)

Removing an emoji reaction is basically the same format, but you’ll use reactions.remove instead of reactions.add

sc.api_call(
  "reactions.remove",
  channel="C0XXXXXXX",
  name="thumbsup",
  timestamp="1234567890.123456"
)

See reactions.add and reactions.remove for more info.

Getting a list of channels

At some point, you’ll want to find out what channels are available to your app. This is how you get that list.

Note: This call requires the channels:read scope.

sc.api_call("channels.list")

Archived channels are included by default. You can exclude them by passing exclude_archived=1 to your request.

sc.api_call(
  "channels.list",
  exclude_archived=1
)

See channels.list for more info.

Getting a channel’s info

Once you have the ID for a specific channel, you can fetch information about that channel.

sc.api_call(
  "channels.info",
  channel="C0XXXXXXX"
)

See channels.info for more info.

Joining a channel

Channels are the social hub of most Slack teams. Here’s how you hop into one:

sc.api_call(
  "channels.join",
  channel="C0XXXXXXY"
)

If you are already in the channel, the response is slightly different. already_in_channel will be true, and a limited channel object will be returned. Bot users cannot join a channel on their own, they need to be invited by another user.

See channels.join for more info.

Leaving a channel

Maybe you’ve finished up all the business you had in a channel, or maybe you joined one by accident. This is how you leave a channel.

sc.api_call(
  "channels.leave",
  channel="C0XXXXXXX"
)

See channels.leave for more info.

Tokens and Authentication

The simplest way to create an instance of the client, as shown in the samples above, is to use a bot (xoxb) access token:

# Get the access token from environmental variable
slack_token = os.environ["SLACK_API_TOKEN"]
sc = SlackClient(slack_token)

The SlackClient library allows you to use a variety of Slack authentication tokens.

To take advantage of automatic token refresh, you’ll need to instantiate the client a little differently than when using a bot access token. With a bot token, you have the access (xoxb) token when you create the client, when using refresh tokens, you won’t know the access token when the client is created.

Upon the first request, the SlackClient will request a new access (xoxa) token on behalf of your application, using your app’s refresh token, client ID, and client secret.

# Get the access token from environmental variable
slack_refresh_token = os.environ["SLACK_REFRESH_TOKEN"]
slack_client_id = os.environ["SLACK_CLIENT_ID"]
slack_client_secret = os.environ["SLACK_CLIENT_SECRET"]

Since your app’s access tokens will be expiring and refreshed, the client requires a callback method to be passed in on creation of the client. Once Slack returns an access token for your app, the SlackClient will call your provided callback to update the access token in your datastore.

# This is where you'll add your data store update logic
def token_update_callback(update_data):
    print("Enterprise ID: {}".format(update_data["enterprise_id"]))
    print("Workspace ID: {}".format(update_data["team_id"]))
    print("Access Token: {}".format(update_data["access_token"]))
    print("Access Token expires in (ms): {}".format(update_data["expires_in"]))

# When creating an instance of the client, pass the client details and token update callback
sc = SlackClient(
  refresh_token=slack_refresh_token,
  client_id=slack_client_id,
  client_secret=slack_client_secret,
  token_update_callback=token_update_callback
)

Slack will send your callback function the app’s access token, token expiration TTL, team ID, and enterprise ID (for enterprise workspaces)

See Tokens & Authentication for API token handling best practices.

Additional Information

For comprehensive method information and usage examples, see the full documentation.

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

slackclient-1.3.0.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

slackclient-1.3.0-py2.py3-none-any.whl (18.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file slackclient-1.3.0.tar.gz.

File metadata

  • Download URL: slackclient-1.3.0.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for slackclient-1.3.0.tar.gz
Algorithm Hash digest
SHA256 4d5f2d5b05a8fa717b745efa934d0a4240dfc8442f169fb2a8af4e5adb8297ad
MD5 eaf1d890423478f33f3d943e9386e7d4
BLAKE2b-256 c64cdcbe1c833262ac8501766e5a42690313b6a3189dae0a704b56a11bd1e877

See more details on using hashes here.

File details

Details for the file slackclient-1.3.0-py2.py3-none-any.whl.

File metadata

  • Download URL: slackclient-1.3.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for slackclient-1.3.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 d06b2105a1044651a7dcefe77c24cade6ae7c98ff53422e970634e62862e7bf3
MD5 aaa337c52a2e5d090c1807fc7a5d110d
BLAKE2b-256 0d2f1378e64a843a5a8a83d73caa59ac88c36c67e2b41ac0fab3422080ff13bd

See more details on using hashes here.

Supported by

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