Answers for "get message author id discord.py"

1

how to get the author on discord.py

ctx.author #Gets the author of a command
ctx.author.id #Gets the Discord ID of the author of a command
Posted by: Guest on March-29-2021
1

discord.py get id of sent message

sent_message = await ctx.send("I want to get the ID of this message")
print(message.id)
Posted by: Guest on August-23-2021

Code answers related to "get message author id discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language