Answers for "have a bot send a message to a spacific channel discord py"

9

discord.py send image

await channel.send(file=discord.File('path/to/image.png'))
Posted by: Guest on July-03-2020
9

discord.py add reaction to message

#1
message = ctx.send("text")
#2
message = channel.send("text")
#3
message = channel.fetch_message(messageid)
#add reaction to message
emoji = 'N{THUMBS UP SIGN}'
await message.add_reaction(emoji)
Posted by: Guest on September-27-2020

Code answers related to "have a bot send a message to a spacific channel discord py"

Python Answers by Framework

Browse Popular Code Answers by Language