Загрузка...

Вопрос по telethon

Тема в разделе Python создана пользователем renameduser_226688 16 апр 2020. 165 просмотров

  1. renameduser_226688
    renameduser_226688 Автор темы 16 апр 2020 39 8 дек 2017
    Можно ли скачать только фото ?
     
  2. awnulled
    awnulled 16 апр 2020 6 28 фев 2017
    Примеры с их же доки:https://docs.telethon.dev/en/latest...nloads.DownloadMethods.download_profile_photo
    Python
    from telethon.tl.types import InputMessagesFilterPhotos
    photos = await client.get_messages(chat, None, filter=InputMessagesFilterPhotos)
    Python
    from telethon.tl.types import InputMessagesFilterPhotos
    async for message in client.iter_messages(chat, filter=InputMessagesFilterPhotos):
    print(message.photo)
     
Top
Загрузка...