mirror of
https://github.com/TeamPGM/PagerMaid_Plugins.git
synced 2024-11-21 14:38:31 +00:00
18 lines
741 B
Python
18 lines
741 B
Python
from pagermaid import bot, version
|
|
from pagermaid.listener import listener
|
|
from pagermaid.utils import alias_command
|
|
from telethon.tl.functions.channels import GetAdminedPublicChannelsRequest
|
|
|
|
|
|
@listener(is_plugin=False, outgoing=True, command=alias_command("listusernames"),
|
|
description='列出所有属于自己的公开群组/频道。',
|
|
parameters="")
|
|
async def listusernames(context):
|
|
""" Get a list of your reserved usernames. """
|
|
await context.edit('正在获取中...')
|
|
result = await bot(GetAdminedPublicChannelsRequest())
|
|
output = "以下是属于我的所有公开群组/频道:\n\n"
|
|
for i in result.chats:
|
|
output += f"{i.title}\n@{i.username}\n\n"
|
|
await context.edit(output)
|