Skip to content

Commit 2801ed9

Browse files
links
1 parent 8f061a8 commit 2801ed9

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
<img alt="PyPI - Version" src="https://img.shields.io/pypi/v/slack-sdk"></a>
1313
<a href="https://pypi.org/project/slack-sdk/">
1414
<img alt="Python Versions" src="https://img.shields.io/pypi/pyversions/slack-sdk.svg"></a>
15-
<a href="https://tools.slack.dev/python-slack-sdk/">
15+
<a href="https://docs.slack.dev/tools/python-slack-sdk/">
1616
<img alt="Documentation" src="https://img.shields.io/badge/dev-docs-yellow"></a>
1717
</p>
1818

1919
The Slack platform offers several APIs to build apps. Each Slack API delivers part of the capabilities from the platform, so that you can pick just those that fit for your needs. This SDK offers a corresponding package for each of Slack’s APIs. They are small and powerful when used independently, and work seamlessly when used together, too.
2020

21-
**Comprehensive documentation on using the Slack Python can be found at [https://tools.slack.dev/python-slack-sdk/](https://tools.slack.dev/python-slack-sdk/)**
21+
**Comprehensive documentation on using the Slack Python can be found at [https://docs.slack.dev/tools/python-slack-sdk/](https://docs.slack.dev/tools/python-slack-sdk/)**
2222

2323
---
2424

@@ -36,11 +36,11 @@ The **Python Slack SDK** allows interaction with:
3636
- `slack_sdk.models`: for constructing [Block Kit](https://api.slack.com/block-kit) UI components using easy-to-use builders
3737
- `slack_sdk.rtm`: for utilizing the [RTM API][rtm-docs]
3838

39-
If you want to use our [Events API][events-docs] and Interactivity features, please check the [Bolt for Python][bolt-python] library. Details on the Tokens and Authentication can be found in our [Auth Guide](https://tools.slack.dev/python-slack-sdk/installation/).
39+
If you want to use our [Events API][events-docs] and Interactivity features, please check the [Bolt for Python][bolt-python] library. Details on the Tokens and Authentication can be found in our [Auth Guide](https://docs.slack.dev/tools/python-slack-sdk/installation/).
4040

4141
## slackclient is in maintenance mode
4242

43-
Are you looking for [slackclient](https://pypi.org/project/slackclient/)? The website is live [here](https://tools.slack.dev/python-slackclient/) just like before. However, the slackclient project is in maintenance mode now and this [`slack_sdk`](https://pypi.org/project/slack-sdk/) is the successor. If you have time to make a migration to slack_sdk v3, please follow [our migration guide](https://tools.slack.dev/python-slack-sdk/v3-migration/) to ensure your app continues working after updating.
43+
Are you looking for [slackclient](https://pypi.org/project/slackclient/)? The slackclient project is in maintenance mode now and this [`slack_sdk`](https://pypi.org/project/slack-sdk/) is the successor. If you have time to make a migration to slack_sdk v3, please follow [our migration guide](https://docs.slack.dev/tools/python-slack-sdk/v3-migration/) to ensure your app continues working after updating.
4444

4545
## Table of contents
4646

@@ -98,7 +98,7 @@ We've created this [tutorial](https://github.com/slackapi/python-slack-sdk/tree/
9898

9999
---
100100

101-
Slack provide a Web API that gives you the ability to build applications that interact with Slack in a variety of ways. This Development Kit is a module based wrapper that makes interaction with that API easier. We have a basic example here with some of the more common uses but a full list of the available methods are available [here][api-methods]. More detailed examples can be found in [our guide](https://tools.slack.dev/python-slack-sdk/web/).
101+
Slack provide a Web API that gives you the ability to build applications that interact with Slack in a variety of ways. This Development Kit is a module based wrapper that makes interaction with that API easier. We have a basic example here with some of the more common uses but a full list of the available methods are available [here][api-methods]. More detailed examples can be found in [our guide](https://docs.slack.dev/tools/python-slack-sdk/web/).
102102

103103
#### Sending a message to Slack
104104

@@ -267,7 +267,7 @@ print(response)
267267

268268
If you're migrating from slackclient v2.x of slack_sdk to v3.x, Please follow our migration guide to ensure your app continues working after updating.
269269

270-
**[Check out the Migration Guide here!](https://tools.slack.dev/python-slack-sdk/v3-migration/)**
270+
**[Check out the Migration Guide here!](https://docs.slack.dev/tools/python-slack-sdk/v3-migration/)**
271271

272272
### Migrating from v1
273273

docs/english/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ if __name__ == "__main__":
170170

171171
Once your user has completed the OAuth flow, you'll be able to use the provided tokens to call any of the Slack Web API methods that require an access token.
172172

173-
Refer to the [basic usage](https://tools.slack.dev/python-slack-sdk/legacy/basic_usage) page for more examples.
173+
Refer to the [basic usage](/tools/python-slack-sdk/legacy/basic_usage) page for more examples.
174174

175175
## Installation troubleshooting {#troubleshooting}
176176

docs/english/legacy/auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ if __name__ == "__main__":
132132

133133
Once your user has completed the OAuth flow, you'll be able to use the provided tokens to call any of the Slack Web API methods that require an access token.
134134

135-
Refer to the [basic usage](https://tools.slack.dev/python-slack-sdk/legacy/basic_usage) page for more examples.
135+
Refer to the [basic usage](/tools/python-slack-sdk/legacy/basic_usage) page for more examples.

docs/english/legacy/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is the first stable version of [slack_sdk](https://pypi.org/project/slack-s
77
- Better async/sync separation for `WebClient` and `WebhookClient`
88
- Renamed packages (from `slack` to `slack_sdk`) with deprecation warnings
99

10-
Refer to [v3.0.0 milestone](https://github.com/slackapi/python-slack-sdk/milestone/10?closed=1) and [the website](https://tools.slack.dev/python-slack-sdk/) for details. If you're a `slackclient` user, the migration guide for `slackclient` v2.x users is available at http://localhost:3000/python-slack-sdk/v3-migration.
10+
Refer to [v3.0.0 milestone](https://github.com/slackapi/python-slack-sdk/milestone/10?closed=1) and [the docs website](/tools/python-slack-sdk/) for details. If you're a `slackclient` user, the migration guide for `slackclient` v2.x users is available at http://localhost:3000/python-slack-sdk/v3-migration.
1111

1212
## v2.9.3 (2020-10-20)
1313

docs/english/legacy/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The v3 SDK provides additional features such as Socket Mode, OAuth flow, SCIM AP
66

77
:::
88

9-
Refer to the [migration guide](https://tools.slack.dev/python-slack-sdk/v3-migration) to learn how to smoothly migrate your existing code.
9+
Refer to the [migration guide](/tools/python-slack-sdk/v3-migration) to learn how to smoothly migrate your existing code.
1010

1111
Slack APIs allow anyone to build full featured integrations that extend and expand the capabilities of your Slack workspace. These APIs allow you to build applications that interact with Slack just like the people on your team. They can post messages, respond to events that happen, and build complex UIs for getting work done.
1212

docs/english/oauth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This page explains how to handle the Slack OAuth flow. If you're looking for a much easier way to do this, check out [Bolt for Python](https://github.com/slackapi/bolt-python), a full-stack Slack app framework. With Bolt, you won't need to implement most of the following code on your own.
44

5-
Refer to the [Python document for this module](https://tools.slack.dev/python-slack-sdk/api-docs/slack_sdk/) for more details.
5+
Refer to the [Python document for this module](https://docs.slack.dev/tools/python-slack-sdk/reference) for more details.
66

77
## App installation flow {#app-installation}
88

docs/english/scim.md

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

55
Refer to [using the Slack SCIM API](/admins/scim-api) for more details.
66

7-
View the [Python document for this module](https://tools.slack.dev/python-slack-sdk/api-docs/slack_sdk/).
7+
View the [Python document for this module](https://docs.slack.dev/tools/python-slack-sdk/reference).
88

99
## SCIMClient {#scimclient}
1010

docs/english/web.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ See the [`chat.postEphemeral`](/reference/methods/chat.postEphemeral) API method
5656
Messages posted from apps can contain more than just text; they can also include full user interfaces composed of blocks using [Block Kit](/block-kit).
5757

5858
The [`chat.postMessage method`](/reference/methods/chat.postMessage) takes an optional blocks argument that allows you to customize the layout of a message. Blocks can be specified
59-
in a single array of either dict values or [slack_sdk.models.blocks.Block](https://tools.slack.dev/python-slack-sdk/api-docs/slack_sdk/models/blocks/index.html) objects.
59+
in a single array of either dict values or [slack_sdk.models.blocks.Block](https://docs.slack.dev/tools/python-slack-sdk/reference/models/blocks/index.html) objects.
6060

6161
To send a message to a channel, use the channel's ID. For DMs, use the user's ID.
6262

0 commit comments

Comments
 (0)