Я делаю бота в телеграмм и мне надо чтобы он каждых 30 минут отправлял сообщения
Вот код:
import random
import telebot
bot = telebot.TeleBot('Token')
eng_word = ['weather — погода','fine — прекрасный','terrible — ужасный','cold — холодный','hot — жаркий']
@bot.message_handler(commands=['start'])
def welcome(message):
bot.send_message(message.chat.id, "Привет, {0.first_name}!\nЯ -<b>{1.first_name}</b>, бот который поможет выучить английские слова)".format(message.from_user, bot.get_me()),
parse_mode='html')
@bot.message_handler(commands= ['learn'])
def learn(message):
bot.send_message(message.chat.id, random.choice(eng_word))
bot.polling(none_stop=True)