Python Forum
telegram + telethon download message and foto and republish
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
telegram + telethon download message and foto and republish
#1
hi at all , i have a little problem , sorry at al i am beginner of python and telegram and telethon sorry , i want read all message in one channel (i am user), and publish in my channel (admin ), i create this srcipt , and it work for message but not work for download foto , (my platform is linux mint)
anyone can help me ?? or giveme some suggestion ?? thanks

#from telethon import TelegramClient
from telethon import TelegramClient, events
import logging

name     = "TESTCHANNEL"
api_id   = "000000"
api_hash = "AJAJAJJAJAJAJAJAJAJAJAJ"     
phone    = "+32000000000"
Nik      = "NIKNAME" 
filename = "foto"
# Remember to use your own values from my.telegram.org!

logging.basicConfig(format='[%(levelname) 5s/%(asctime)s] %(name)s: %(message)s',
                    level=logging.WARNING)

client = TelegramClient('session', api_id, api_hash)
client.start()

channel = name

@client.on(events.NewMessage(chats=channel))
async def handler(event):
    print(event.message.message)
    MessageR=(event.message.message)
    mes  = await client.send_message(Nik,MessageR)
    await client.pin_message(Nik, mes, notify=True)
    
    path = await client.download_media(message)
    await client.download_media(message, filename)     

client.run_until_disconnected()
thanks at all
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Telegram bot python help! wolfdevs 0 798 Sep-07-2022, 11:34 AM
Last Post: wolfdevs
  Sent message by Telethon marked as read shan 0 2,928 Nov-13-2021, 06:03 PM
Last Post: shan
  download with internet download manager coral_raha 0 3,029 Jul-18-2021, 03:11 PM
Last Post: coral_raha
  Bot coding telegram.ext Kumarkv 1 1,928 May-29-2020, 01:00 AM
Last Post: Kumarkv
  How to install Telethon? Sharon 9 15,603 Apr-21-2019, 08:32 AM
Last Post: Sharon
  Question about telegram bot Romank 0 2,285 Mar-29-2018, 09:36 PM
Last Post: Romank
  Telegram code help AaronJonk 0 11,070 Oct-05-2017, 02:44 PM
Last Post: AaronJonk

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020