在discord.py中获取机器人的服务器列表,可以通过使用guilds
属性来实现。guilds
属性返回一个Guild
对象的列表,每个对象代表机器人所在的服务器。
以下是一个示例代码,展示如何获取机器人在discord.py中的服务器列表:
import discord
from discord.ext import commands
intents = discord.Intents.default()
intents.guilds = True
bot = commands.Bot(command_prefix='!', intents=intents)
@bot.event
async def on_ready():
print(f'Logged in as {bot.user.name}')
print('Servers:')
for guild in bot.guilds:
print(f'- {guild.name} (id: {guild.id})')
bot.run('YOUR_BOT_TOKEN')
在上述代码中,我们首先创建了一个Intents
对象,并将guilds
属性设置为True
,以便获取服务器列表。然后,我们创建了一个Bot
实例,并传入intents
参数。在on_ready
事件中,我们遍历bot.guilds
列表,并打印每个服务器的名称和ID。
请注意,为了运行上述代码,你需要将YOUR_BOT_TOKEN
替换为你自己机器人的令牌。
这是一个简单的示例,你可以根据自己的需求进行进一步的处理和操作。
领取专属 10元无门槛券
手把手带您无忧上云