Files
pretix_cgo/src/pretix/helpers/http.py
2018-06-03 21:59:30 +02:00

12 lines
402 B
Python

from django.http import StreamingHttpResponse
class ChunkBasedFileResponse(StreamingHttpResponse):
block_size = 4096
def __init__(self, streaming_content=(), *args, **kwargs):
filelike = streaming_content
streaming_content = streaming_content.chunks(self.block_size)
super().__init__(streaming_content, *args, **kwargs)
self['Content-Length'] = filelike.size