gpt4 book ai didi

python-3.x - 属性错误 : 'Client' object has no attribute 'command'

转载 作者:行者123 更新时间:2023-12-03 08:45:28 25 4
gpt4 key购买 nike

我添加了这段代码:

@client.command(pass_context=True)
async def name(ctx):
username = ctx.message.author.display_name

在我的代码行的末尾,我在尝试使机器人在线时遇到此错误:

AttributeError: 'Client' object has no attribute 'command'

最佳答案

您需要使用 discord.ext.commands.Bot而不是 discord.ClientBotClient 的子类,因此您还可以通过 Bot 实例使用所有 Client 功能

from discord.ext.commands import Bot

bot = Bot("!")

@bot.command()
async def test(ctx):
await ctx.send("Command executed")

await bot.run("TOKEN")

关于python-3.x - 属性错误 : 'Client' object has no attribute 'command' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55778345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com