Найти - Пользователи
Полная версия: Ошибка NameError: name 'message_handler' is not defined
Начало » Python для новичков » Ошибка NameError: name 'message_handler' is not defined
1
eldarshi
Выходит ошибка: message_handler(commands
NameError: name ‘message_handler’ is not defined

Сам код:
import config
import telebot
from telebot import types # pip install pyTelegramBotAPI
bot = telebot.TeleBot(config.token)

message_handler(commands
def welcome(message):
sti = open(path+'stiker.tgs', ‘rb’)
bot.send_sticker(message.chat.id, sti)
markup = types.ReplyKeyboardMarkup(resize_keyboard=True)

item3 = types.KeyboardButton(“Активация”)

markup.add(item3)

bot.send_message(message.chat.id,
“– ”
“–”.format(
message.from_user, bot.get_me()),
parse_mode='html', reply_markup=markup)

eldarshi
Как можно исправить
ZerG
идешь и смотришь примеры
https://github.com/eternnoir/pyTelegramBotAPI/tree/master/examples
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB