我的机器人如何从PC文件夹发送图片(而不是在线图片)

时间:2020-02-24 21:43:54

标签: python discord discord.py

我想制作一个从文件夹发送图片的机器人(我真的不知道如何解释)名为bot.py的文件是该机器人的代码,并且我希望该机器人从{{1} }文件夹(我不想将图片上传到imgur或类似的文件)。

这是我的机器人代码:

outfit

1 个答案:

答案 0 :(得分:1)

https://discordpy.readthedocs.io/en/latest/faq.html#how-do-i-upload-an-image

await channel.send(file=discord.File('my_file.png'))

with open('my_file.png', 'rb') as fp:
    await channel.send(file=discord.File(fp, 'new_filename.png'))

如果在建立图像文件look into this Stackoverflow question的相对路径时遇到问题。