Доброго времени суток. Решил сделать чтобы бот сохранял фото которые, отправил юзер, но тут столкнулся с ошибкой
a bytes-like object is required, not '_io.BytesIO'.Возможно кто-то знает как можно исправить?
@dp.message_handler(content_types=['photo'])
async def handle_docs_photo(message):
try:
file_info = await bot.get_file(message.photo[0].file_id)
downloaded_file = await bot.download_file(file_info.file_path)
src = 'C:/Users/Sasha/Desktop/Bot/images/' + message.photo[0].file_id
with open(src, 'wb') as new_file:
new_file.write(downloaded_file)
await bot.send_message(message.from_user.id, "Фото добавлено")
except Exception as e:
await bot.send_message(message.from_user.id, e)