%define scl rh-python36 %{?scl:%scl_package %{name}} %{!?scl:%global pkg_name %{name}} %define name slackclient %define version 1.1.2 %define unmangled_version 1.1.2 %define unmangled_version 1.1.2 %define release 1 Summary: Slack API clients for Web API and RTM API %{?scl:Requires: %{scl}-runtime} %{?scl:BuildRequires: %{scl}-runtime} Name: %{?scl_prefix}%{pkg_name} Version: %{version} Release: %{release} Source0: slackclient-%{unmangled_version}.tar.gz License: MIT Group: Development/Libraries BuildRoot: %{_tmppath}/%{pkg_name}-%{version}-%{release}-buildroot Prefix: %{_prefix} BuildArch: noarch Vendor: Slack Technologies, Inc. Packager: Martin Juhl Url: https://github.com/slackapi/python-slackclient %description python-slackclient =================== 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| .. |build-status| image:: https://travis-ci.org/slackapi/python-slackclient.svg?branch=master :target: https://travis-ci.org/slackapi/python-slackclient .. |windows-build-status| image:: https://ci.appveyor.com/api/projects/status/rif04t60ptslj32x/branch/master?svg=true :target: https://ci.appveyor.com/project/slackapi/python-slackclient .. |codecov| image:: https://codecov.io/gh/slackapi/python-slackclient/branch/master/graph/badge.svg :target: https://codecov.io/gh/slackapi/python-slackclient .. |doc-status| image:: https://readthedocs.org/projects/python-slackclient/badge/?version=latest :target: http://python-slackclient.readthedocs.io/en/latest/?badge=latest .. |pypi-version| image:: https://badge.fury.io/py/slackclient.svg :target: https://pypi.python.org/pypi/slackclient .. |python-version| image:: https://img.shields.io/pypi/pyversions/slackclient.svg :target: https://pypi.python.org/pypi/slackclient 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. Requirements and Installation ****************************** We recommend using `PyPI `_ to install Slack Developer Kit for Python .. code-block:: bash 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: .. code-block:: bash git clone https://github.com/slackapi/python-slackclient.git pip install -r requirements.txt Documentation -------------- For comprehensive method information and usage examples, see the `full documentation `_. You may also review our `Development Roadmap `_ in the project wiki. 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 `dev4slack channel `_ 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 `_. See `Tokens & Authentication ` for API token handling best practices. 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. .. code-block:: python from slackclient import SlackClient slack_token = os.environ["SLACK_API_TOKEN"] sc = SlackClient(slack_token) sc.api_call( "chat.postMessage", channel="#python", 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. .. code-block:: python from slackclient import SlackClient slack_token = os.environ["SLACK_API_TOKEN"] sc = SlackClient(slack_token) sc.api_call( "chat.postEphemeral", channel="#python", 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. .. code-block:: python from slackclient import SlackClient slack_token = os.environ["SLACK_API_TOKEN"] sc = SlackClient(slack_token) sc.api_call( "chat.postMessage", channel="#python", 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``. .. code-block:: python from slackclient import SlackClient slack_token = os.environ["SLACK_API_TOKEN"] sc = SlackClient(slack_token) sc.api_call( "chat.postMessage", channel="#python", 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. .. code-block:: python 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. .. code-block:: python 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`` .. code-block:: python 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. .. code-block:: python from slackclient import SlackClient slack_token = os.environ["SLACK_API_TOKEN"] sc = SlackClient(slack_token) sc.api_call("channels.list") Archived channels are included by default. You can exclude them by passing ``exclude_archived=1`` to your request. .. code-block:: python from slackclient import SlackClient slack_token = os.environ["SLACK_API_TOKEN"] sc = SlackClient(slack_token) 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. .. code-block:: python from slackclient import SlackClient slack_token = os.environ["SLACK_API_TOKEN"] sc = SlackClient(slack_token) 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: .. code-block:: python from slackclient import SlackClient slack_token = os.environ["SLACK_API_TOKEN"] sc = SlackClient(slack_token) 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. .. code-block:: python from slackclient import SlackClient slack_token = os.environ["SLACK_API_TOKEN"] sc = SlackClient(slack_token) sc.api_call( "channels.leave", channel="C0XXXXXXX" ) See `channels.leave `_ for more info. Additional Information ******************************************************************************************** For comprehensive method information and usage examples, see the `full documentation`_. %prep %{?scl:scl enable %{scl} - << \EOF} set -ex %setup -n slackclient-%{unmangled_version} -n slackclient-%{unmangled_version} %{?scl:EOF} %build %{?scl:scl enable %{scl} - << \EOF} set -ex python3 setup.py build %{?scl:EOF} %install %{?scl:scl enable %{scl} - << \EOF} set -ex python3 setup.py install --single-version-externally-managed -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES %{?scl:EOF} %clean %{?scl:scl enable %{scl} - << \EOF} set -ex rm -rf $RPM_BUILD_ROOT %{?scl:EOF} %files -f INSTALLED_FILES %defattr(-,root,root)