Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
bot.polling(none_stop=True, interval=0)
import telebot bot = telebot.TeleBot('') @bot.message_handler(content_types=['text']) bot.polling(none_stop=True, interval=0)
import telebot bot = telebot.TeleBot('TOKEN') @bot.message_handler(content_types=['text']) def send_hello(message): bot.reply_to(message, 'Hello!') if __name__ == '__main__': bot.polling()