Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
import telebot import config bot = telebot.TeleBot('ТУТ МОЙ ТОКЕН') @bot.message_handler(content_types=['start']) def greeting(message): bot.reply_to(message, text='hello') if __name__ == '__main__': bot.polling(none_stop=True)
@bot.message_handler(commands=['start'])