代码拉取完成,页面将自动刷新
# 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)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。