Bot, Telegram Bot, Python
При команде /start бот не отправляет 'Привет'.
Код:
import telebot
token = 'Конкретный токен'
bot = telebot.TeleBot(token)
@bot.message_handler(commands = ['start'])
def start_message(message):
bot.send_message(message.chat.id, 'Привет!')
bot.polling()