forked from slackapi/bolt-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents_app.py
More file actions
51 lines (33 loc) · 934 Bytes
/
events_app.py
File metadata and controls
51 lines (33 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# ------------------------------------------------
# instead of slack_bolt in requirements.txt
import sys
sys.path.insert(1, "..")
# ------------------------------------------------
import re
import logging
logging.basicConfig(level=logging.DEBUG)
from slack_bolt import App
app = App()
@app.middleware # or app.use(log_request)
def log_request(logger, body, next):
logger.debug(body)
return next()
@app.event("app_mention")
def event_test(body, say, logger):
logger.info(body)
say("What's up?")
@app.event("reaction_added")
def say_something_to_reaction(say):
say("OK!")
@app.message("test")
def test_message(logger, body):
logger.info(body)
@app.message(re.compile("bug"))
def mention_bug(logger, body):
logger.info(body)
if __name__ == "__main__":
app.start(3000)
# pip install slack_bolt
# export SLACK_SIGNING_SECRET=***
# export SLACK_BOT_TOKEN=xoxb-***
# python events_app.py