I can’t make a script for a long time. I have one telegram channel, I don’t want to resend an album from this channel, but just send it to me in one message
from telethon import TelegramClient, events
from telethon import events
api_id =
api_hash = ""
chat = ''
client = TelegramClient('', api_id, api_hash)
print('started')
@client.on(events.Album)
async def handler(event):
#what farther
2
Answers
Here is one approach to do that:
There is
send_file
which saysSo extending @Tibebes answer