discord python send message picture code example
Example 1: send image discord.py
await channel.send(file=discord.File('my_image.png'))
Example 2: send message discord.py
await message.channel.send("Your message")
await channel.send(file=discord.File('my_image.png'))
await message.channel.send("Your message")