pylakey

Results 12 comments of pylakey
trafficstars

Get all folders and iterate over them

You need to add event handler for API.Types.UPDATE_CHAT_FOLDERS event. It contains all the information about chat folders Example: ```python client = Client() async def on_update_chat_folders(self, _: Client, update: UpdateChatFolders): print(update.chat_folders)...