Budget: 90 USD Deadline: 5 days
To safely send messages to hundreds of chats without instant blocks, it is essential to strictly adhere to Telegram's limits and randomize intervals. The script will send messages with dynamic delays and support templates with spintax (structures like {hello|greetings}), so the texts differ with each send.
I will implement an autoposter in Python using the Telethon or Pyrogram library. The settings for frequency, message variations, and the list of chats will be read from a configuration file. I have experience bypassing Telegram's spam filters through session rotation and proxies.
Here is a rough scheme for sending messages with delays:
import random, asyncio
async def send_post(client, chat, texts):
text = random.choice(texts)
await client.send_message(chat, text)
await asyncio.sleep(random.randint(120, 300))
I can start working tomorrow as soon as you show me examples of texts and the list of chats.