加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
transfile.py 596 Bytes
一键复制 编辑 原始数据 按行查看 历史
AustinKuture 提交于 2024-01-31 15:38 . 更新
# coding=utf-8
"""
@header transfile.py
@abstract
@MyBlog: http://www.kuture.com.cn
@author Created by Kuture on 2024/1/31
@version 1.0.0 2024/1/31 Creation()
@Copyright © 2024年 Mr.Li All rights reserved
"""
import base64
def trans_file_to_base64(file_path):
"""
将文件转换为base64编码
:param file_path:
:return:
"""
with open(file_path, 'rb') as file:
return base64.b64encode(file.read()).decode('utf-8')
file_path = '/Users/NikkiMac/Desktop/mytest/config.py'
res = trans_file_to_base64(file_path)
print(res)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化