Answers for "discord.py send message to specific channel without channel id"

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 "discord.py send message to specific channel without channel id"

Python Answers by Framework

Browse Popular Code Answers by Language