discord.py send message to everyone code example
Example 1: send message to specific channel discord.py
channel = client.get_channel(12324234183172)
await channel.send('hello')
Example 2: send message discord.py
await message.channel.send("Your message")
Example 3: python discord mention user
await message.channel.send(message.author.mention)