Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
test multiple applicable ping per message (detect multiple keywords per message)
Browse files
app.py
CHANGED
@@ -34,6 +34,8 @@ DATA_DISCUSSIONS_CHANNEL_ID = 1217179426002047076
|
|
34 |
TRIGGERS = {
|
35 |
("discord bot",): "<@U051DB2754M>", # adam
|
36 |
("lunarflu",): "<@U061W3NRFFA>" # lunarflu test slack
|
|
|
|
|
37 |
}
|
38 |
|
39 |
|
@@ -79,8 +81,7 @@ async def on_message(message):
|
|
79 |
'mention': slack_mention,
|
80 |
'trigger': trigger
|
81 |
})
|
82 |
-
print(f"daily pings:{daily_pings}")
|
83 |
-
break
|
84 |
|
85 |
# Check if the message is in a thread
|
86 |
if isinstance(message.channel, discord.Thread):
|
@@ -248,7 +249,7 @@ def send_daily_pings():
|
|
248 |
# pings -------------------------------------------------------------------------------------------
|
249 |
executor = ThreadPoolExecutor(max_workers=1)
|
250 |
scheduler = BackgroundScheduler(executors={'default': executor})
|
251 |
-
scheduler.add_job(send_daily_pings, trigger='interval', seconds=
|
252 |
scheduler.start()
|
253 |
|
254 |
|
|
|
34 |
TRIGGERS = {
|
35 |
("discord bot",): "<@U051DB2754M>", # adam
|
36 |
("lunarflu",): "<@U061W3NRFFA>" # lunarflu test slack
|
37 |
+
("flower",): "π₯π₯π₯π₯π₯" #
|
38 |
+
("steak",): "π₯©π₯©π₯©π₯©π₯©π₯©" #
|
39 |
}
|
40 |
|
41 |
|
|
|
81 |
'mention': slack_mention,
|
82 |
'trigger': trigger
|
83 |
})
|
84 |
+
print(f"daily pings:{daily_pings}")
|
|
|
85 |
|
86 |
# Check if the message is in a thread
|
87 |
if isinstance(message.channel, discord.Thread):
|
|
|
249 |
# pings -------------------------------------------------------------------------------------------
|
250 |
executor = ThreadPoolExecutor(max_workers=1)
|
251 |
scheduler = BackgroundScheduler(executors={'default': executor})
|
252 |
+
scheduler.add_job(send_daily_pings, trigger='interval', seconds=60)
|
253 |
scheduler.start()
|
254 |
|
255 |
|