import requests import time def send_message(bot_token, chat_id, message): url = f"https://api.telegram.org/bot{bot_token}/sendMessage" payload = { 'chat_id': chat_id, 'text': message } response = requests.post(url, json=payload) return response.json() def main(): # Birden fazla bot tokeni bot_tokens = ["6606543136:AAH3NmxRr7p3QcQKoX729FK6x6bqc-vPbYM"] # Hedef kanalın veya grubun ID'sini buraya girin chat_id = "-1002050192705" # Göndermek istediğiniz metni belirleyin message = "ALPEREN PATRON ALLAH KİTAP XD" # Tüm botlar için mesaj gönderme işlemini gerçekleştirin while True: for bot_token in bot_tokens: try: send_message(bot_token, chat_id, message) print(f"Bot {bot_token} tarafından mesaj gönderildi.") except Exception as e: print(f"Hata oluştu: {e}") # Her 3 saniyede bir mesajı gönder time.sleep(0.5) if __name__ == "__main__": main()