python-slack-sdk
python-slack-sdk copied to clipboard
Slack Developer Kit for Python
### Reproducible in: ``` slack_sdk==3.26.2 Python 3.9.18 ProductName: macOS ProductVersion: 13.6.4 BuildVersion: 22G513 Darwin Kernel Version 22.6.0: Sun Dec 17 22:13:25 PST 2023; root:xnu-8796.141.3.703.2~2/RELEASE_ARM64_T6020 ``` ### Steps to reproduce: 1....
Hello, I am using the sdk to send messages with file attachments to slack threads. My bot works across multiple spaces but in some spaces the files_upload_v2 has started "failing"...
I am trying to send an slack message along with attachment and I am getting below error raceback (most recent call last): File "/layers/google.python.pip/pip/lib/python3.10/site-packages/flask/app.py", line 2190, in wsgi_app response =...
I'm trying to import classes defined in the SDK but for some reason it won't suggest imports beyond: - `WebClient` - `WebhookClient` The imports I am looking for are `SlackResponse`,...
The error occurs in chat.update, but I can't find the cause. Even if I enter the same text, it may not occur. code: The streaming output is reproduced on slack...
I'd like to add MongoDB OAuth installation store which is currently not present in [here](https://github.com/slackapi/python-slack-sdk/tree/main/slack_sdk/oauth/installation_store) I recently developed my own app [Pollify](https://github.com/faisalsaifii/pollify) and wanted to use MongoDB for which there...
Right now, the only way to download a file from Slack is to do something like this: ```python import requests response = requests.get(url_private, headers={"Authorization": f"Bearer {TOKEN}"}, timeout=30) ``` However, this...
SCIM API v2 is now available. This SDK will add its support in the next release. Refer to https://api.slack.com/admins/scim2 for details. ### Category (place an `x` in each of the...
I improved the documentation and helped implement the API methods for `admin.apps.config.*` recently in the node-slack-sdk. As part of this work, it became clear that the arguments for the `admin.apps.config.set`...
As reported at https://github.com/slackapi/bolt-python/issues/974, [the built-in `SQLAlchemyInstallationStore`](https://github.com/slackapi/python-slack-sdk/blob/v3.23.0/slack_sdk/oauth/installation_store/sqlalchemy/__init__.py)'s table definition does not propertly support non-English character data when using it with MySQL / MariaDB. ### Reproducible in: See https://github.com/slackapi/bolt-python/issues/974 #### The...