discord.py 添加频道
时间: 2023-12-06 22:02:20 浏览: 226
要在 Discord.py 中添加频道,您需要使用 `Guild.create_text_channel()` 或 `Guild.create_voice_channel()` 方法。
以下是一个示例代码片段,演示如何在 Discord.py 中创建新的文本频道:
```python
import discord
client = discord.Client()
@client.event
async def on_ready():
guild = client.get_guild(GUILD_ID) # 替换为您的服务器 ID
channel = await guild.create_text_channel('new-channel') # 替换为您想要创建的频道名称
print(f'Created new channel: {channel}')
client.run(TOKEN) # 替换为您的 bot token
```
这将在指定的服务器中创建一个名为 `new-channel` 的新文本频道。您可以根据需要更改 `create_text_channel()` 方法中的参数。
阅读全文