|
1 | 1 | # Python slackclient
|
2 | 2 |
|
| 3 | +## Important Notice |
| 4 | + |
| 5 | +**This [`slackclient`](https://pypi.org/project/slackclient/) PyPI project is in maintenance mode now** and [`slack-sdk`](https://pypi.org/project/slack-sdk/) project is the successor. The v3 SDK provides more functionalities such as Socket Mode, OAuth flow module, SCIM API, Audit Logs API, better asyncio support, retry handlers, and many more. |
| 6 | + |
| 7 | +Refer to [the migration guide](https://slack.dev/python-slack-sdk/v3-migration/index.html#from-slackclient-2-x) to learn how to smoothly migrate your existing code. |
| 8 | + |
| 9 | +## Overview |
| 10 | + |
3 | 11 | The Python `slackclient` library is a developer kit for interfacing with the Slack Web API and Real Time Messaging (RTM) API on Python 3.6 and above.
|
4 | 12 |
|
5 | 13 | **Comprehensive documentation on using the Slack Python can be found at [https://slack.dev/python-slackclient/](https://slack.dev/python-slackclient/)**
|
6 | 14 |
|
7 |
| -[![pypi package][pypi-image]][pypi-url] |
8 |
| -[![Build Status][travis-image]][travis-url] |
9 |
| -[![Python Version][python-version]][pypi-url] |
10 |
| -[![codecov][codecov-image]][codecov-url] |
11 |
| -[![contact][contact-image]][contact-url] |
12 |
| - |
13 | 15 | 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.
|
14 | 16 |
|
15 | 17 | The **Python slackclient** allows interaction with:
|
@@ -189,7 +191,7 @@ When in async mode its important to remember to await or run/run_until_complete
|
189 | 191 |
|
190 | 192 | #### Slackclient as a script
|
191 | 193 |
|
192 |
| -```python |
| 194 | +```python |
193 | 195 | import asyncio
|
194 | 196 | import os
|
195 | 197 | from slack import WebClient
|
@@ -326,10 +328,10 @@ If you're migrating from v1.x of slackclient to v2.x, Please follow our migratio
|
326 | 328 |
|
327 | 329 | ---
|
328 | 330 |
|
329 |
| -If you get stuck, we’re here to help. The following are the best ways to get assistance working through your issue: |
330 |
| - |
331 |
| -Use our [Github Issue Tracker][gh-issues] for reporting bugs or requesting features. |
332 |
| -Visit the [Slack Community][slack-community] for getting help using Slack Developer Kit for Python or just generally bond with your fellow Slack developers. |
| 331 | +We no longer provide support for v1 or v2 of this SDK and only maintain the latest v3 version. If you would like support |
| 332 | +from this project's maintainers please consider updating to the latest version of the SDK first. Otherwise, you may visit the |
| 333 | +[Slack Community][slack-community] for getting help using Slack Developer Kit for Python or just generally bond with your |
| 334 | +fellow Slack developers. |
333 | 335 |
|
334 | 336 | <!-- Markdown links -->
|
335 | 337 |
|
|
0 commit comments