Answers for "how to create a private text channel discord.py"

1

discord.py create text channel

@client.command()
async def create_channel(ctx, channel_name):
	guild = ctx.guild
	channel = await guild.create_text_channel(channel_name)
Posted by: Guest on March-29-2021

Code answers related to "how to create a private text channel discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language