Answers for "how to dm user discord.py"

1

discord.py dm specific user

if message.content == "dm":
        await message.channel.send("Dming user")
        dm = await message.author.create_dm()  # Creates a dm channel with the user
        await dm.send("What you want to send")  # Sends the user the message
Posted by: Guest on March-05-2021
2

discord.py mention user

#discord.py rewrite
#python 3+
bot.command(name='pingme', help='pings the author of the message')
async def pingme(ctx):
	#to get a member from a 'ctx' object is ctx.author
	#from there its .mention will mention (ping) the user
	#also there are others like .id
	await ctx.send(ctx.author.mention)
Posted by: Guest on January-19-2021
0

how to mention someone discord.py

myid = '<@201909896357216256>'
await client.send_message(message.channel, ' : %s is the best ' % myid)
Posted by: Guest on August-04-2020

Code answers related to "how to dm user discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language