skip to Main Content

Telegram – where to get requested list?

I have looked through stack overflow and found what I need - export of removed (banned) users from specific telegram chat (supergroup). the number of removed/banned users around 5000. I did this: channel_id = -######## users = client.get_participants(client.get_input_entity(channel_id)) for user…

VIEW QUESTION

Telegram login blocked despite correct code – Python Telethon

I'm working on a Python project that uses Telethon to connect to Telegram. I have the following code for authentication: client = TelegramClient(phone, api_id, api_hash, flood_sleep_threshold=3) client.connect() if not client.is_user_authorized(): client.send_code_request(phone) client.sign_in(phone, input(f'Enter the code: {phone} : ')) The issue…

VIEW QUESTION
Back To Top
Search