Answers for "discord.py send message"

9

discord.py send image

await channel.send(file=discord.File('path/to/image.png'))
Posted by: Guest on July-03-2020
9

discord.py add reaction to message

#1
message = ctx.send("text")
#2
message = channel.send("text")
#3
message = channel.fetch_message(messageid)
#add reaction to message
emoji = 'N{THUMBS UP SIGN}'
await message.add_reaction(emoji)
Posted by: Guest on September-27-2020
4

on message discord py

@bot.event
async def on_message(message):
    if message.content == "pong":
        await message.channel.send('ping')
Posted by: Guest on January-12-2021
0

discord.py send messages

#plain text
await message.channel.send("content")

#with a embed
await message.channel.send("content", embed=embed_name)

#with a file/image
await message.channel.send("content", file="file/image path")
Posted by: Guest on August-04-2021
9

discord.py

import discord

client = discord.Client()

@client.event
async def on_ready():
    print('We have logged in as {0.user}'.format(client))

@client.event
async def on_message(message):
    if message.author == client.user:
        return

    if message.content.startswith('$hello'):
        await message.channel.send('Hello!')

client.run('your token here')
Posted by: Guest on March-27-2020
0

reply to a message discord.py

await ctx.reply('Hello!')
Posted by: Guest on May-30-2021

Code answers related to "discord.py send message"

Python Answers by Framework

Browse Popular Code Answers by Language