После нажатия /start реакции никакой. Код:
import telebot
import schedule
import time
import telegram_send
bot = telebot.TeleBot("код есть")
@bot.message_handler(commands=["start"])
def reply_to(message):
bot.reply_to(message, text="Howdy, how are you doing?")
bot.infinity_poling()
def goodnight():
telegram_send.send(messages=["текст!!"])
def airalarm():
telegram_send.send(messages=["текст"])
schedule.every().day.at("22:23").do(goodnight)
schedule.every().day.at("17:50").do(airalarm)
while True:
schedule.run_pending()
time.sleep(1)
код. – Сергей Кох Jun 29 '22 at 18:06bot.infinity_poling()внутри хендлера? – oleksandrigo Jun 29 '22 at 18:10