This code for Telegram bot suposse to work because I copyed it, but does not – Telegram API
I started learning making bots in Telegram with Python 3. I was learning it by this course https://groosha.gitbook.io/telegram-bot-lessons/. In a lesson 2 there was a code import telebot bot = telebot.TeleBot(config.token) @bot.message_handler(commands=['test']) def find_file_ids(message): for file in os.listdir('music/'): if file.split('.')[-1]…