gpt4 book ai didi

python - 将 BytesIO 转换为文件

转载 作者:IT老高 更新时间:2023-10-28 20:22:29 36 4
gpt4 key购买 nike

我有一个包含 excel 文档数据的 BytesIO 对象。我要使用的库不支持 BytesIO 并且需要一个 File 对象。如何获取我的 BytesIO 对象并将其转换为 File 对象?

最佳答案

# Create an example
from io import BytesIO
bytesio_object = BytesIO(b"Hello World!")

# Write the stuff
with open("output.txt", "wb") as f:
f.write(bytesio_object.getbuffer())

关于python - 将 BytesIO 转换为文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29324037/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com