mirror of
https://github.com/TeamPGM/PagerMaid_Plugins_Pyro.git
synced 2024-11-16 16:26:45 +00:00
20 lines
749 B
Python
20 lines
749 B
Python
|
from pagermaid.enums import Client, Message
|
||
|
from pagermaid.listener import listener
|
||
|
|
||
|
from pyrogram.raw.functions.channels import GetAdminedPublicChannels
|
||
|
|
||
|
|
||
|
@listener(command="listusernames",
|
||
|
admins_only=True,
|
||
|
description="列出所有属于自己的公开群组/频道。")
|
||
|
async def list_usernames(bot: Client, message: Message):
|
||
|
""" Get a list of your reserved usernames. """
|
||
|
result = await bot.invoke(GetAdminedPublicChannels())
|
||
|
output = f"以下是属于我的 {len(result.chats)} 个所有公开群组/频道:\n\n"
|
||
|
for i in result.chats:
|
||
|
try:
|
||
|
output += f"{i.title}\n@{i.username}\n\n"
|
||
|
except AttributeError:
|
||
|
output += f"{i.title}\n\n"
|
||
|
await message.edit(output)
|