A framework to build Slack apps using Python
bolt-python A Python framework to build Slack apps in a flash with the latest platform features. Read the getting started guide and look at our code examples to learn how to build apps using Bolt. Setup # Python 3.6+ required python -m venv .venv source .venv/bin/activate pip install -U pip pip install slack_bolt Creating an app Create a Bolt for Python app by calling a constructor, which is a top-level export. If you’d prefer, you can create an async app. […]
Read more