Загрузка...

Question on telethon

Thread in Python created by renameduser_226688 Apr 16, 2020. 164 views

  1. renameduser_226688
    renameduser_226688 Topic starter Apr 16, 2020 39 Dec 8, 2017
    Можно ли скачать только фото ?
     
  2. awnulled
    awnulled Apr 16, 2020 6 Feb 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)
     
Loading...
Top