“Fiel to base64 Python” Ответ

конвертировать файл в Python Base64

import base64
data = open("sample.txt", "r").read()
encoded = base64.b64encode(data)
MitchAloha

Fiel to base64 Python

import base64

with open("yourfile.ext", "rb") as image_file:
    encoded_string = base64.b64encode(image_file.read())
Puzzled Plover

Ответы похожие на “Fiel to base64 Python”

Вопросы похожие на “Fiel to base64 Python”

Больше похожих ответов на “Fiel to base64 Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования