[Django]-Redirect realtime common line output to Django HttpResponse

1👍

The HttpResponse constructor takes either a string or an iterable.

To trickle content down, you can make the iterable a generator.

Provided, of course, your middleware isn’t interfering.

Leave a comment