Depending on your needs, you can pass an iterator to HttpResponse in
order to generate chunks on the fly. This works for me using
apache/mod_fastcgi. Something like this:
def myview(request):
def inner():
yield "first chunk"
yield "second chunk"
return HttpResponse(inner())
Obviously this will not work if you require middleware that operates
over the entire response body.
Cheers
Tom
Most mailers will automatically quote the person they are replying to,
including the time and date of the email, and who sent it, including
their email address.
However you're thinking about the wrong thing. You're using email on a
public mailing list. You've already shared your email address with
every subscriber, and it's been archived on many mailing list archive
websites.
Some archives may obfuscate all email addresses like google groups
does, but there is no guarantee. Eg:
http://python.6.n6.nabble.com/Chunked-or-streaming-page-output-td4560371.html
Cheers
Tom