Answer the question
In order to leave comments, you need to log in
How to access chats of a certain category?
I need to access chats from a specific category
Here is an example to access a role:
role = discord.utils.get(ctx.message.guild.roles,id=845581727962759213)
But I don't know how to access chats from certain category
Answer the question
In order to leave comments, you need to log in
category = ctx.guild.get_channel(872712940890900371) # получаем категорию
for channel in category.channels: # https://discordpy.readthedocs.io/en/latest/api.html#discord.CategoryChannel.channels
print(channel.id, channel.name)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question