1. 首页
  2. 数据库
  3. 其它
  4. python使用内存zipfile对象在内存中打包文件示例

python使用内存zipfile对象在内存中打包文件示例

上传者: 2020-12-31 18:16:18上传 PDF文件 27.64KB 热度 22次
复制代码 代码如下:import zipfileimport StringIO class InMemoryZip(object): def __init__(self): # Create the in-memory file-like object self.in_memory_zip = StringIO.StringIO() def append(self, filename_in_zip, file_contents): ”’Appends a file with name filename_in_zip and content
用户评论