Questions tagged [streaminghttpresponse]
18 questions
0
votes
0 answers
Django StreamingHttpResponse returns only a single yield result from generator to stream
I am trying to stream several large json files to the front end at a time (I need to stream all of them one by one, and can't split it into several requests):
def stream_response_generator(response):
yield json.dumps({ 'searchedVariants':…

Nikita Vlasenko
- 4,004
- 7
- 47
- 87
0
votes
0 answers
how to use StreamingHttpResponse in django rest framework?
i have a simple django rest framework and i want to know how can use StreamingHttpResponse in my project.
my model is like this:
class Article(models.Model):
user = models.CharField(max_length=100)
title = models.CharField(max_length=200)
…

Shahram Zarie
- 11
- 5
0
votes
1 answer
How do I send file upload progress % in Django?
I have a iOS app which can upload files to my Django API.
Heres the front-end code:
AF.upload(multipartFormData: { multipartFormData in
multipartFormData.append( data1!, withName: "one", fileName: "one")
},…

Sam KC
- 61
- 1
- 8