在python中将文本写入zipfile

Ant*_*ton 1 python zipfile

我有一个函数,它创建一个带有文本文件的zip存档.是否可以在不创建临时文件的情况下执行此操作?

import zipfile
import os

PROJ_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)))


def create_zip(name, text):
    with open(os.path.join(PROJ_DIR, "_tmp_file_"), "w+") as f: 
        f.write(text)

    zf = zipfile.ZipFile(os.path.join(PROJ_DIR, "%s.zip" % name), "w",
                         zipfile.ZIP_DEFLATED)
    zf.write(os.path.join(PROJ_DIR, "_tmp_file_"), "/file.txt")
    zf.close()
Run Code Online (Sandbox Code Playgroud)

Chr*_*tts 5

您可以使用writestr而不是write示例

zf.writestr('/file.txt', text)
Run Code Online (Sandbox Code Playgroud)

文档.