Answers for "how to make bot send message in specific channel python"

1

send message in specific channel discord.py

"""SEND MESSAGE IN SPECIFIC CHANNEL"""
@client.command()
async def announce(ctx, channel: discord.TextChannel):
		await channel.send("My text")
Posted by: Guest on May-29-2021

Code answers related to "how to make bot send message in specific channel python"

Python Answers by Framework

Browse Popular Code Answers by Language