Python
0
Вклад в тег
import telebot
from telebot import types
import qrcode
from io import BytesIO
bot = telebot.TeleBot('TOKEN')
@bot.message_handler(commands=['старт'])
def starting_bot(message):
bot.send_message(message.chat.id, 'Привет, я бот, который создаёт QRкоды \n\n/помощь для просмотра умений бота')
@bot.message_handler(commands=['помощь'])
def helping_user(message):
bot.send_message(message.chat.id, 'Чтобы создать QRкод напиши мне /создать')
@bot.message_handler(commands=['создать'])
def creating_qr(message):
bot.send_message(message.chat.id, 'Пришли мне текст, который нужно преобразовать в QRcod')
@bot.message_handler(content_types=['text'])
def creating_qr(message):
qr_img = qrcode.make(message.text)
bio = BytesIO()
qr_img.save(bio, 'JPEG')
bio.seek(0)
bot.send_photo(message.chat.id, bio)
bot.polling(none_stop = True)