Answers for "python discord check if message contains a string"

2

how to check if a message includes a word discord.py

@bot.event
async def on_message(msg):
    if 'word' in msg.content:
        print('Keyword found')
        # Do stuff here
Posted by: Guest on January-25-2021

Code answers related to "python discord check if message contains a string"

Python Answers by Framework

Browse Popular Code Answers by Language