A patched version of slack-sdk to allow the use of slack API without any access tokens creation. This patch uses existing credentials from the installed slack app.
Project description
Patched slack-sdk
This project is not endorsed or authorised in any way by Slack Technologies LLC.
The Slack API is essential for all Slack clients, such as the official desktop app and third-party bots, to interact with and modify the data that shapes the Slack user experience. Authorization is required from all clients to access this API.
Since July 2021, individual user access to the Slack API (excluding bot access) has been granted through a personal token (starting with xoxc-) and a cookie named d. Each Slack Workspace has its unique personal token, while the cookie remains the same across all workspaces.
If you are using the Slack desktop app, these credentials are stored locally on your machine. This modified client extracts them from the app's local storage, allowing their use for purposes beyond those supported by the app itself.
QuickStart
Requirements
- Python <=3.8 - because leveldb is not compatible with a higher version
Installation
pip install patched-slack
Usage
Authentication test
from patched_slack_sdk import PatchedWebClient
client = PatchedWebClient()
print(client.auth_test())
Update slack status
from patched_slack_sdk import PatchedWebClient
client = PatchedWebClient()
client.users_profile_set(
profile={
"status_text": "I'm out of the office",
"status_emoji": ":palm_tree:",
}
)
Contributing
Contributions are always welcome! Please feel free to submit a pull request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file patched_slack_sdk-0.1.0.tar.gz
.
File metadata
- Download URL: patched_slack_sdk-0.1.0.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.11.0 Linux/6.5.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2965b6b4ffb6d1e913121f00de8fd8aa0c630ed967f19369ce7b8776b472e9e4 |
|
MD5 | 63309dc64354de9f614b400df1d5f2fe |
|
BLAKE2b-256 | bb0147fc547f35e9b501edf4b10750c2a7baf5bb555d0f22e8c287db002712b5 |
File details
Details for the file patched_slack_sdk-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: patched_slack_sdk-0.1.0-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.11.0 Linux/6.5.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6798edf2311fef8bdc298e84ac7594a229e510dd5f8d6476ae8f5383dfcea029 |
|
MD5 | b0f455a3ac6f22bafb2cbff3d4875682 |
|
BLAKE2b-256 | 161607930d18172d9f3b80e8c6017003eb809dbb92e458476a28d0afced75592 |