Код: Выделить всё
from config import API_TOKEN
import telebot
bot = telebot.TeleBot(token=API_TOKEN)
@bot.message_handlers(command=['start'])
def welcome(message):
welcome_text = f"user {message.from_user.first_name} welcome to mybot!"
bot.send_message(message.chat.id, welcome_text)
bot.polling()
Я новичок в написании тел-ботов и пока мало что понимаю, поэтому я ценю любые помогите.
Подробнее здесь: https://stackoverflow.com/questions/789 ... callable-e