telethon_downloader
telethon_downloader copied to clipboard
hi. New option?
Is it possible add a forwarder msg? something like this
def callback(update): print('I received', update)
client = TelegramClient('session', api_id, api_hash, update_workers=1, spawn_read_thread=False)
client.connect() client.add_event_handler(callback) client.idle() # ends with Ctrl+C
Take all messages from a channel and forwarder to my own group/chanel on the bot autodownload the files is it possible?
Why do you need this? As soon as you send the file you get a message stating that the download is in queue. Then this message is edited when download starts and also when finished or if an error occurred.

Why do you need this? As soon as you send the file you get a message stating that the download is in queue. Then this message is edited when download starts and also when finished or if an error occurred.
It's so you don't have to manually add the files to your bot. That's why I was asking if there was anything automatic.