gpt4 book ai didi

Python - 属性错误 : 'function' object has no attribute 'author'

转载 作者:行者123 更新时间:2023-12-04 08:09:40 24 4
gpt4 key购买 nike

我是 Python 和编程的新手,我正在创建一个使用 Schoolsofts API 的不和谐机器人(Schoolsoft 是一个面向瑞典学生的网站,您可以在其中获取有关成绩等信息)。
所以我有以下功能:

async def response(): 
embed = discord.Embed(
title = 'Matsedel',
description = '',
colour = discord.Colour.blue()
)
embed.set_author(name='Schoolsoft')
embed.add_field(name='1', value=lunch1[25], inline=False)
embed.add_field(name='2', value=lunch1[20], inline=False)
embed.add_field(name='3', value=lunch1[22], inline=False)
embed.add_field(name='4', value=lunch1[7], inline=False)
embed.add_field(name='5', value=lunch1[23], inline=False)
然后我有一个命令来调用这个函数
@client.command(name='matsedel', help='This returns matsedeln for the week')
async def matsedel(ctx):
await ctx.send(response())
await client.process_commands(response)
当我不和谐地输入命令时,机器人以 <coroutine object response at 0x000002CD...> 响应我收到一条错误消息说
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'function' object has no attribute 'author'".
你们知道可能是什么问题吗?提前致谢

最佳答案

response function 是一个协程,如果你尝试调用一个协程而不等待它,你会得到 <coroutine object func at 0x00000...>输出

>>> async def foo():
... return "Foo function"
...
>>> foo()
<coroutine object foo at 0x...>
要实际获得结果,您需要 await它,还记得只有 await内部函数 协程
>>> await foo() # Not awaiting inside another coroutine for explanation purposes
"Foo function"
顺便说一句,我看到你并没有真正返回 response 中的嵌入。功能
async def response():
# ...
return embed
您的代码已修复
@client.command(name='matsedel', help='This returns matsedeln for the week')
async def matsedel(ctx):
embed = await response()
await ctx.send(embed=embed)
你也不需要 process_commands在命令的末尾,您只需将其放入 on_message事件

关于Python - 属性错误 : 'function' object has no attribute 'author' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66043378/

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