Answers for "how to mention voice channel discord.py"

8

how to send a message in a specific channel discord.py

channel = client.get_channel(12324234183172)
await channel.send('hello')
Posted by: Guest on January-19-2020
0

discord.py find voice channel by name

channel = discord.utils.find(lambda c: c.name == 'some name' and c.type == 'voice', some_list_of_channels)
if channel is not None:
    print(channel.id)
Posted by: Guest on January-22-2020

Code answers related to "how to mention voice channel discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language