|
1 | | -<h1 align="center">Bolt <img src="https://raw.githubusercontent.com/slackapi/bolt-python/main/docs/static/img/bolt-logo.svg" alt="Bolt logo" width="32"/> for Python</h1> |
| 1 | +<h1 align="center">Bolt <img src="https://docs.slack.dev/img/logos/bolt-py-logo.svg" alt="Bolt logo" width="32"/> for Python</h1> |
2 | 2 |
|
3 | 3 | <p align="center"> |
4 | 4 | <a href="https://pypi.org/project/slack-bolt/"> |
|
10 | 10 | <br> |
11 | 11 | <a href="https://pypi.org/project/slack-bolt/"> |
12 | 12 | <img alt="Python Versions" src="https://img.shields.io/pypi/pyversions/slack-bolt.svg"></a> |
13 | | - <a href="https://tools.slack.dev/bolt-python/"> |
| 13 | + <a href="https://docs.slack.dev/tools/bolt-python/"> |
14 | 14 | <img alt="Documentation" src="https://img.shields.io/badge/dev-docs-yellow"></a> |
15 | 15 | </p> |
16 | 16 |
|
17 | | -A Python framework to build Slack apps in a flash with the latest platform features. Read the [getting started guide](https://tools.slack.dev/bolt-python/getting-started) and look at our [code examples](https://github.com/slackapi/bolt-python/tree/main/examples) to learn how to build apps using Bolt. The Python module documents are available [here](https://tools.slack.dev/bolt-python/api-docs/slack_bolt/). |
| 17 | +A Python framework to build Slack apps in a flash with the latest platform features. Read the [getting started guide](https://docs.slack.dev/tools/bolt-python/getting-started) and look at our [code examples](https://github.com/slackapi/bolt-python/tree/main/examples) to learn how to build apps using Bolt. The Python module documents are available [here](https://docs.slack.dev/tools/bolt-python/reference/). |
18 | 18 |
|
19 | 19 | ## Setup |
20 | 20 |
|
21 | 21 | ```bash |
22 | | -# Python 3.6+ required |
| 22 | +# Python 3.7+ required |
23 | 23 | python -m venv .venv |
24 | 24 | source .venv/bin/activate |
25 | 25 |
|
@@ -153,7 +153,7 @@ Most of the app's functionality will be inside listener functions (the `fn` para |
153 | 153 | If you'd prefer to build your app with [asyncio](https://docs.python.org/3/library/asyncio.html), you can import the [AIOHTTP](https://docs.aiohttp.org/en/stable/) library and call the `AsyncApp` constructor. Within async apps, you can use the async/await pattern. |
154 | 154 |
|
155 | 155 | ```bash |
156 | | -# Python 3.6+ required |
| 156 | +# Python 3.7+ required |
157 | 157 | python -m venv .venv |
158 | 158 | source .venv/bin/activate |
159 | 159 |
|
@@ -192,7 +192,7 @@ Apps can be run the same way as the syncronous example above. If you'd prefer an |
192 | 192 |
|
193 | 193 | ## Getting Help |
194 | 194 |
|
195 | | -[The documentation](https://tools.slack.dev/bolt-python) has more information on basic and advanced concepts for Bolt for Python. Also, all the Python module documents of this library are available [here](https://tools.slack.dev/bolt-python/api-docs/slack_bolt/). |
| 195 | +[The documentation](https://tools.slack.dev/bolt-python) has more information on basic and advanced concepts for Bolt for Python. Also, all the Python module documents of this library are available [here](https://tools.slack.dev/bolt-python/reference/). |
196 | 196 |
|
197 | 197 | If you otherwise get stuck, we're here to help. The following are the best ways to get assistance working through your issue: |
198 | 198 |
|
|
0 commit comments