我想制作一个从文件夹发送图片的机器人(我真的不知道如何解释)名为bot.py
的文件是该机器人的代码,并且我希望该机器人从{{1} }文件夹(我不想将图片上传到imgur或类似的文件)。
这是我的机器人代码:
outfit
答案 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的相对路径时遇到问题。