📜  发送图像 discord.py - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:06.978000             🧑  作者: Mango

代码示例3
import io
import aiohttp

async with aiohttp.ClientSession() as session:
    async with session.get(my_url) as resp:
        if resp.status != 200:
            return await channel.send('Could not download file...')
        data = io.BytesIO(await resp.read())
        await channel.send(file=discord.File(data, 'cool_image.png'))