mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 01:27:29 +08:00
14 lines
366 B
Python
14 lines
366 B
Python
from nonebot.adapters import satori
|
|
|
|
|
|
async def count_groups(bot: satori.Bot) -> int:
|
|
cnt: int = 0
|
|
|
|
group_response = await bot.guild_list()
|
|
while group_response.next is not None:
|
|
cnt += len(group_response.data)
|
|
group_response = await bot.friend_list(next_token=group_response.next)
|
|
|
|
cnt += len(group_response.data)
|
|
return cnt - 1
|