On Tue, 2009-03-17 at 00:12 -0700, Ramashish Baranwal wrote: > Hi, > > I need to do some cleanup after sending a response to the client. That > means I want to send response without returning a response object. > Something like- > > def handler(request): > # ... > resp = HttpResponse(data) > # send response in some way (?) > # clean up, log, etc.. > > I know its unusual to do this, but is there a way to achieve it? If > not directly, then a way to setup the cleanup code to run after the > response has been sent will also do.
What sort of things do you need to do that can't be done before sending back the response? Most of the things I can think of (such as the time taken to send the response) are out of scope for Django, since it lives at a layer below the stuff that actually interacts with the webserver. So if this were possible with poking at the deep internals, it would involve looking at the handlers. It might be possible to do something by, for example, hooking into some parts of the WSGI framework. You'd be subclassing Django's existing WSGI handler (or writing your own) in that case. Short answer is, no, it's not really possible, unless you're willing to poke at the internals and write your own HTTP handler class. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---