При попытке достать фото из sql и отправить его через бота в телеграме мне выдавало ошибки
sqlite3.OperationalError: Could not decode to UTF-8 column with text '�PNG
Я пытался его отдельно открывать но была всё та же ошибка.
import telebot
import sqlite3
bot = telebot.TeleBot('TOKEN')
connect = sqlite3.connect(
'images.sql', check_same_thread=False)
cursor = connect.cursor()
@bot.message_handler(commands=['start'])
def image(message):
img = cursor.execute(
f"SELECT Photo FROM image WHERE Code = '1'").fetchone()[0]
bot.send_photo(message.chat.id, img)
bot.infinity_polling()