Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Discord.py Bot sending file to Discord Channel

I am trying to make my discord bot send a jpg file to my discord server, but I keep getting an error that seems pretty uncommon as I can not find any solutions to it on the internet...

the error is... discord.ext.commands.errors.CommandInvokeError: Command raised an exception: ClientRequestError: Can not write request body for https://discordapp.com/api/v6/channels/454374995758678029/messages

My imports are

import time

import discord
from discord.ext import commands
from discord.ext.commands import Bot
import asyncio

The code that I will pull out that the error is related to is

@bot.command(pass_context = True)

async def image(ctx):

        await bot.send_file(ctx.message.channel, open('halogen.jpg'))

Am I just missing an import or is there an actual problem with my code?

Thanks guys

like image 446
Enzo Romano Avatar asked Jun 14 '18 14:06

Enzo Romano


People also ask

How do you send a py code on Discord?

If you want to send a sample of code (e.g., an HTML page) to someone through Discord, you can type three back-ticks (```) before and after the text and then press ↵ Enter . For example, to format the code "<!


2 Answers

I was researching the same thing and I found this to work:

    await ctx.send(file=discord.File(r'c:\location\of\the_file_to\send.png'))

Here is where I found it: link

like image 115
Nathan-Call Avatar answered Sep 30 '22 17:09

Nathan-Call


Try doing it this way.

@bot.command(pass_context=True)
async def send(ctx):
    area=ctx.message.channel
    await bot.send_file(area, r"c:\location\of\the_file_to\send.png",filename="Hello",content="Message test")

You can refer to the discord documentation for it here link

like image 39
KowaiiNeko Avatar answered Sep 30 '22 16:09

KowaiiNeko