import telegram
import time
bot = telegram.Bot(token='мой токен')
def send_message():
bot.send_message(chat_id='мой айди', text='Смотри фильм')
while True:
send_message()
time.sleep(3600) # Отправляем сообщение каждый час
RuntimeWarning: coroutine 'Bot.send_message' was never awaited
bot.send_message(chat_id='мой айди', text='Смотри фильм')
RuntimeWarning: Enable tracemalloc to get the object allocation traceback