You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Slack Events Adapter is a Python-based solution to receive and parse events
5
11
from Slack’s Events API. This library uses an event emitter framework to allow
6
12
you to easily process Slack events by simply attaching functions
7
13
to event listeners.
8
14
15
+
This adapter enhances and simplifies Slack's Events API by incorporating useful best practices, patterns, and opportunities to abstract out common tasks.
16
+
17
+
💡 We wrote a `blog post which explains how`_ the Events API can help you, why we built these tools, and how you can use them to build production-ready Slack apps.
18
+
19
+
.. _blog post which explains how: https://medium.com/@SlackAPI/enhancing-slacks-events-api-7535827829ab
20
+
21
+
9
22
🤖 Installation
10
23
------------
11
24
@@ -20,10 +33,6 @@ Before you can use the `Events API`_ you must
20
33
`create a Slack App`_, and turn on
21
34
`Event Subscriptions`_.
22
35
23
-
.. _Events API: https://api.slack.com/events-api
24
-
.. _create a Slack App: https://api.slack.com/apps/new
0 commit comments