Skip to content

Commit fbee1cc

Browse files
tools
1 parent 9136169 commit fbee1cc

3 files changed

Lines changed: 28 additions & 28 deletions

File tree

docs/english/_sidebar.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
[
22
{
33
"type": "doc",
4-
"id": "python-slack-sdk/index",
5-
"label": "Python Slack SDK",
4+
"id": "tools/python-slack-sdk/index",
5+
"label": "tools/python Slack SDK",
66
"className": "sidebar-title"
77
},
88
{
99
"type": "html",
1010
"value": "<hr>"
1111
},
12-
"python-slack-sdk/installation",
13-
"python-slack-sdk/web",
14-
"python-slack-sdk/webhook",
15-
"python-slack-sdk/socket-mode",
16-
"python-slack-sdk/oauth",
17-
"python-slack-sdk/audit-logs",
18-
"python-slack-sdk/rtm",
19-
"python-slack-sdk/scim",
12+
"tools/python-slack-sdk/installation",
13+
"tools/python-slack-sdk/web",
14+
"tools/python-slack-sdk/webhook",
15+
"tools/python-slack-sdk/socket-mode",
16+
"tools/python-slack-sdk/oauth",
17+
"tools/python-slack-sdk/audit-logs",
18+
"tools/python-slack-sdk/rtm",
19+
"tools/python-slack-sdk/scim",
2020
{ "type": "html", "value": "<hr>" },
2121
{
2222
"type": "category",
2323
"label": "Legacy slackclient v2",
2424
"items": [
25-
"python-slack-sdk/legacy/index",
26-
"python-slack-sdk/legacy/auth",
27-
"python-slack-sdk/legacy/basic_usage",
28-
"python-slack-sdk/legacy/conversations",
29-
"python-slack-sdk/legacy/real_time_messaging",
30-
"python-slack-sdk/legacy/faq",
31-
"python-slack-sdk/legacy/changelog"
25+
"tools/python-slack-sdk/legacy/index",
26+
"tools/python-slack-sdk/legacy/auth",
27+
"tools/python-slack-sdk/legacy/basic_usage",
28+
"tools/python-slack-sdk/legacy/conversations",
29+
"tools/python-slack-sdk/legacy/real_time_messaging",
30+
"tools/python-slack-sdk/legacy/faq",
31+
"tools/python-slack-sdk/legacy/changelog"
3232
]
3333
},
34-
"python-slack-sdk/v3-migration",
34+
"tools/python-slack-sdk/v3-migration",
3535
{ "type": "html", "value": "<hr>" },
3636
{
3737
"type": "category",
3838
"label": "Tutorials",
3939
"items": [
40-
"python-slack-sdk/tutorial/uploading-files",
41-
"python-slack-sdk/tutorial/understanding-oauth-scopes"
40+
"tools/python-slack-sdk/tutorial/uploading-files",
41+
"tools/python-slack-sdk/tutorial/understanding-oauth-scopes"
4242
]
4343
},
4444
{ "type": "html", "value": "<hr>" },

docs/english/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ The Slack platform offers several APIs to build apps. Each Slack API delivers pa
88

99
| Feature | Use | Package |
1010
|---|---|---|
11-
| [Web API](/python-slack-sdk/web) | Send data to or query data from Slack using any of over 200 methods. | `slack_sdk.web`, `slack_sdk.web.async_client` |
12-
| [Webhooks](/python-slack-sdk/webhook) / `response_url` | Send a message using Incoming Webhooks or `response_url` | `slack_sdk.webhook`, `slack_sdk.webhook.async_client` |
13-
| [Socket Mode](/python-slack-sdk/socket-mode) | Receive and send messages over Socket Mode connections. | `slack_sdk.socket_mode` |
14-
| [OAuth](/python-slack-sdk/oauth) | Setup the authentication flow using V2 OAuth, OpenID Connect for Slack apps. | `slack_sdk.oauth` |
15-
| [Audit Logs API](/python-slack-sdk/audit-logs) | Receive audit logs API data. | `slack_sdk.audit_logs` |
16-
| [SCIM API](/python-slack-sdk/scim) | Utilize the SCIM APIs for provisioning and managing user accounts and groups. | `slack_sdk.scim` |
17-
| [RTM API](/python-slack-sdk/rtm) | Listen for incoming messages and a limited set of events happening in Slack, using WebSocket. | `slack_sdk.rtm_v2` |
11+
| [Web API](/tools/python-slack-sdk/web) | Send data to or query data from Slack using any of over 200 methods. | `slack_sdk.web`, `slack_sdk.web.async_client` |
12+
| [Webhooks](/tools/python-slack-sdk/webhook) / `response_url` | Send a message using Incoming Webhooks or `response_url` | `slack_sdk.webhook`, `slack_sdk.webhook.async_client` |
13+
| [Socket Mode](/tools/python-slack-sdk/socket-mode) | Receive and send messages over Socket Mode connections. | `slack_sdk.socket_mode` |
14+
| [OAuth](/tools/python-slack-sdk/oauth) | Setup the authentication flow using V2 OAuth, OpenID Connect for Slack apps. | `slack_sdk.oauth` |
15+
| [Audit Logs API](/tools/python-slack-sdk/audit-logs) | Receive audit logs API data. | `slack_sdk.audit_logs` |
16+
| [SCIM API](/tools/python-slack-sdk/scim) | Utilize the SCIM APIs for provisioning and managing user accounts and groups. | `slack_sdk.scim` |
17+
| [RTM API](/tools/python-slack-sdk/rtm) | Listen for incoming messages and a limited set of events happening in Slack, using WebSocket. | `slack_sdk.rtm_v2` |
1818
| Request Signature Verification | Verify incoming requests from the Slack API servers. | `slack_sdk.signature` |
1919
| UI Builders | Construct UI components using easy-to-use builders. | `slack_sdk.models` |
2020

docs/english/v3-migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_label: Migrating from slackclient
44

55
# Migrating from v2.x to v3.x {#migrating}
66

7-
You may still view the legacy `slackclient` v2 [documentation](/python-slack-sdk/legacy/). However, the **slackclient** project is in maintenance mode and this **slack_sdk** project is the successor.
7+
You may still view the legacy `slackclient` v2 [documentation](/tools/python-slack-sdk/legacy/). However, the **slackclient** project is in maintenance mode and this **slack_sdk** project is the successor.
88

99
## From `slackclient` 2.x {#fromv2}
1010

0 commit comments

Comments
 (0)