Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
705 views
in Technique[技术] by (71.8m points)

python - get the name of a channel using discord.py

how do I get the name of a channel so that this bot will work on any server its put on with no changes to code necessary? ( in the code where I put "what do I put here" is where I want the name to be in a variable)Thanks

from discord.ext.commands import Bot
import time, asyncio

TOKEN = 'Its a secret'
BOT_PREFIX = ["!"]
client = Bot(command_prefix=BOT_PREFIX)




@client.event
async def on_message(message):
    if message.author == client.user:
        return




@client.event
async def on_ready():
    print('Logged in as')
    print(client.user.name)
    print(client.user.id)
    print('------')
    await start()
    while True:
        currentTime = time.strftime("%M%S", time.gmtime(time.time()))
        if currentTime == "30:00":
            await start()
        await asyncio.sleep(1)


async def start():
    mainChannel = #What do i put here?
    print(mainChannel.name)
    await client.send_message(mainChannel, "Starting countdown", tts = True)



client.run(TOKEN)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Getting channel from ID (Recommended)

First, get the ID of the channel (Right click the channel and select "Copy ID")

Second, put the ID in the following code:

client.get_channel("ID")

For example:

client.get_channel("182583972662")

Note: The channel ID is a string in discord.py async, and an integer in rewrite

(Thanks to Ari24 for pointing this out)

Getting channel from name (Not reccomended)

First, get the server using either:

server = client.get_server("ID")

OR

for server in client.servers:
    if server.name == "Server name":
        break

Second, get the channel:

for channel in server.channels:
    if channel.name == "Channel name":
        break

What not to do

Try to always use the ID for each server, as it is much faster and more efficient.

Try to avoid using discord.utils.get, such as:

discord.utils.get(guild.text_channels, name="Channel name")

Although it does work, it is bad practise as it has to iterate through the entire list of channels. This can be slow and take much more time than using the ID.

From the discord API docs:

discord.utils.get is a helper that returns the first element in the iterable that meets all the traits passed in attrs


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...