не работает бот на питоне и выдает такую ошибку
bot = telebot.TeleBot(config.TOKEN)
AttributeError: module 'config' has no attribute 'TOKEN'
сам код:
import telebot
import config
bot = telebot.TeleBot(config.TOKEN)
@bot.message_handler(content_types = ['text'])
def lalala(message):
bot.send_message(message.chat.id,message.text)
if __name__ == '__main__':
bot.polling(none_stop=True)
-
Вопрос задан
-
288 просмотров