创建内存中 zip 文件并作为 http 响应返回的函数

发布于 2024-08-24 16:00:37 字数 538 浏览 9 评论 0原文

我避免在磁盘上创建文件,这就是我到目前为止所得到的:

def get_zip(request):
    import zipfile, StringIO
    i = open('picture.jpg', 'rb').read()
    o = StringIO.StringIO()
    zf = zipfile.ZipFile(o, mode='w')
    zf.writestr('picture.jpg', i)
    zf.close()
    o.seek(0)
    response = HttpResponse(o.read())
    o.close()
    response['Content-Type'] = 'application/octet-stream'
    response['Content-Disposition'] = "attachment; filename=\"picture.zip\""
    return response

您认为正确-优雅-Pythonic足够了吗?有更好的方法吗?

谢谢!

I am avoiding the creation of files on disk, this is what I have got so far:

def get_zip(request):
    import zipfile, StringIO
    i = open('picture.jpg', 'rb').read()
    o = StringIO.StringIO()
    zf = zipfile.ZipFile(o, mode='w')
    zf.writestr('picture.jpg', i)
    zf.close()
    o.seek(0)
    response = HttpResponse(o.read())
    o.close()
    response['Content-Type'] = 'application/octet-stream'
    response['Content-Disposition'] = "attachment; filename=\"picture.zip\""
    return response

Do you think is correct-elegant-pythonic enough? Any better way to do it?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遗弃M 2024-08-31 16:00:37

对于StringIO,您通常应该使用o.getvalue()来获取结果。另外,如果您想将普通文件添加到 zip 文件中,可以使用 zf.write('picture.jpg')。您不需要手动阅读它。

For StringIO you should generally use o.getvalue() to get the result. Also, if you want to add a normal file to the zip file, you can use zf.write('picture.jpg'). You don't need to manually read it.

缪败 2024-08-31 16:00:37

避免使用磁盘文件可能会降低服务器速度,但它肯定会起作用。

如果同时处理太多此类请求,您将耗尽内存。

Avoiding disk files can slow your server to a crawl, but it will certainly work.

You'll exhaust memory if you serve too many of these requests concurrently.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文