• Не получается запустить бота через файл на pythonanywhere, что делать?

    @Busar14 Автор вопроса
    Ок, бот начал работать в консоли. Но теперь не воспринимает условия. выдает:
    1.py:30: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
    if message.text == "Macdonald's ":
    1.py:38: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
    elif message.text == "Шаурма ":
    1.py:41: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
    elif message.text == "Пицца ":
    1.py:34: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
    elif message.text == "KFC ":

    вот исходный код:

    # - *- coding: utf- 8 - *-
    import telebot

    from telebot import types

    bot = telebot.TeleBot('1205511771:AAEtLXSsQs3Ik-0PfiWqs2RDNTxYPyp9NHk')

    @bot.message_handler(commands=['start'])
    def welcome(message):

    # keyboard
    markup = types.ReplyKeyboardMarkup(resize_keyboard=True)
    item1 = types.KeyboardButton("Macdonald's ")
    item2 = types.KeyboardButton("KFC ")
    item3 = types.KeyboardButton("Шаурма ")
    item4 = types.KeyboardButton("Пицца ")

    markup.add(item1, item2, item3, item4)

    bot.send_message(message.chat.id, "Добро пожаловать, {0.first_name}!\nЯ - {1.first_name}, бот созданный чтобы собирать данные по заказам 'Сливочек'\n Где сегодня хочешь поесть?".format(message.from_user, bot.get_me()),
    parse_mode='html', reply_markup=markup)

    @bot.message_handler(content_types=['text'])
    def lalala(message):
    if message.chat.type == 'private':
    if message.text == "Macdonald's ":
    bot.send_message(message.chat.id, " ✌ Замечательно, скинь мне что именно ты хочешь заказать, а затем переведи МАНИ $. И незабудь про доставку )\n Вот реквезит кары :\n +7 999-109-42-01")

    elif message.text == "KFC ":
    bot.send_message(message.chat.id, " ✌ Замечательно, скинь мне что именно ты хочешь заказать, а затем переведи МАНИ $. И незабудь про доставку )\n Вот реквезит кары :\n +7 999-109-42-01")

    elif message.text == "Шаурма ":
    bot.send_message(message.chat.id, "Здравый выбор, Бусар тебя потдерживает! Скинь мне что именно ты хочешь заказать, а затем переведи МАНИ $. И незабудь про доставку )\n Вот реквезит кары :\n +7 999-109-42-01")

    elif message.text == "Пицца ":
    bot.send_message(message.chat.id, " ✌ Замечательно, скинь мне что именно ты хочешь заказать, а затем переведи МАНИ $. И незабудь про доставку )\n Вот реквезит кары :\n +7 999-109-42-01")

    else:
    bot.send_message(message.chat.id,'Эй парень, я тебя не понимаю \nСделано специальное меню, а ты пишешь мне какую-то Хуйню!\nПо-моему тебе надо в другую группу\n Сливочки явно не для тебя ')

    # RUN
    bot.polling(none_stop=True)