discord.py 使用 python-pixabay 错误的 otter 命令



使用python-pixabay,我正在尝试搜索水獭图像,然后让我的 discord.py 机器人将图像发送到嵌入中。在我搜索图像并获取图像后,我将其打印出来,但它没有打印任何内容,所以我很确定这是图像搜索的问题。我没有收到任何错误消息,但它只是不起作用。

这是我的代码:

import pixabay
import discord
pixa = os.getenv('PIXABAY_KEY')
image = Image(pixa)
@bot.command(name='otter', help='Generates a random otter!')
async def otter(ctx):
page = random.choice(range(0, 4))

embed = discord.Embed(title='Otter', color=discord.Color.from_rgb)
embed.set_image(url=ims)
embed.set_footer(text='Powered by pixabay.')
await ctx.send(embed=embed)
bot.run(TOKEN)

我没有展示我所有的代码,因为里面有一些敏感的东西,但我展示了你需要看到的所有东西。Pixabay肯定已安装,因为我是通过PyPi网站上的说明安装的

我注意到的一件事是描述是空的。通常,如果嵌入有空字段,则嵌入不会发送,因此我建议您至少检查一下u200b(空字符(*或某些描述的文本。

此外,color参数似乎实际上没有值。discord.Color.from_rgb()实际上是一种接受 3-0-255 之间的整数值的方法(#FFFFFF,不允许 #000000(。

作为旁注,您可以使用此网站获取颜色的十六进制代码。

例:

embed = discord.Embed(title="Otter", description="Some text!", color=discord.Color.from_rgb(85, 177, 74))
# equivalent
embed = discord.Embed(title="Otter", description="Some text!", color=0x55b14a)

*description="u200b"

相关内容

  • 没有找到相关文章

最新更新