在discord.py中,可以通过message.author
属性来获取命令的发送者。message.author
返回一个Member
对象,该对象包含有关发送者的信息,例如用户名、ID等。
以下是一个示例代码,展示如何提取命令的发送者:
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='!')
@bot.command()
async def hello(ctx):
sender = ctx.message.author
await ctx.send(f"Hello, {sender.mention}!")
bot.run('YOUR_BOT_TOKEN')
在上述代码中,我们定义了一个名为hello
的命令。当用户发送!hello
命令时,机器人会回复一条消息,其中包含发送者的提及(mention)。
请注意,上述代码仅为示例,您需要将YOUR_BOT_TOKEN
替换为您自己的机器人令牌。
领取专属 10元无门槛券
手把手带您无忧上云