如何在Discord.py异步分支中找到文本频道名称。例如在文本频道名称中找到单词“ nsfw”?仅供参考,我现在不想使用重写。
答案 0 :(得分:0)
您可以使用[ctx.]message.channel.name
从消息或调用上下文中解析通道名称。请参见下面的ext.commands
示例。
@bot.command(pass_context=True)
async def echochannel(ctx):
await bot.say(ctx.message.channel.name)
然后,您可以执行所需的任何字符串操作,例如if 'nsfw' in ctx.message.channel.name: