Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

discord.py check if message has certain reaction

emoji = "" # some emoji as a string
if any(reaction.emoji == emoji for reaction in message.reactions):
	# there is at least one reaction of the specified emoji
Comment

how to detect the reaction to a message discord.py

@client.event
async def on_message(message):
    #if the spotify command is triggered
        #fetch from the API
        spotifyEmbed = discord.Embed(title=resultName, ...)
        spotifyEmbed.set_image(url=spotifyImgUrl)
        spotifyMessage = await message.channel.send(embed=spotifyEmbed)
        await spotifyMessage.add_reaction("⬅️")
        await spotifyMessage.add_reaction("➡️")

@client.event
async def on_reaction_add(reaction, user):
    if user != client.user:
        if str(reaction.emoji) == "➡️":
            #fetch new results from the Spotify API
            newSearchResult = discord.Embed(...)
            await reaction.message.edit(embed=newSearchResult)
        if str(reaction.emoji) == "⬅️":
            #fetch new results from the Spotify API
            newSearchResult = discord.Embed(...)
            await reaction.message.edit(embed=newSearchResult)
Comment

PREVIOUS NEXT
Code Example
Python :: how to output random letters in python 
Python :: generate gif py 
Python :: pd get non-numeric columns 
Python :: python typed list 
Python :: download a file from url python 
Python :: python find specific file in directory 
Python :: install lz4 python 3 
Python :: mad libs in python 
Python :: Python - How To Ways to Remove xa0 From a String 
Python :: return max repeated value in list 
Python :: how to keep a webdriver tab open 
Python :: groupby year datetime pandas 
Python :: how to convert img to gray python 
Python :: python convert dictionary to pandas dataframe 
Python :: how to shutdown a windows 10 computer using python 
Python :: how to get a dataframe column as a list 
Python :: how to create obtain any random 3 items of list in python 
Python :: replace nat with date pandas 
Python :: python paramiko 
Python :: add pip to path 
Python :: calculate nth prime number python 
Python :: how to count special values in data in python 
Python :: python print for loop one line 
Python :: how to use ggplot matplotlib 
Python :: Python RegEx Getting index of matched object 
Python :: spacy ner 
Python :: get flask version 
Python :: how to check if string is camelcase python 
Python :: python make directory tree from path 
Python :: pandas transpose 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =