Login

SizeAndTimeMiddleware

Author:
amitu
Posted:
October 14, 2008
Language:
Python
Version:
1.0
Score:
4 (after 4 ratings)

Used for showing size of the page in human readable format and time taken to generate the page on the server. To use it, in your base template, somewhere put the line: <!-- ____SIZE_AND_DATE_PLACEHOLDER____ -->. May be used on production.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
import time
from django.utils.encoding import smart_unicode
from django.template.defaultfilters import filesizeformat

class SizeAndTimeMiddleware(object):
    def process_request(self, request):
        request._request_start_time = time.time() 

    def process_response(self, request, response):
        if not hasattr(request, "_request_start_time"): return response
        if response['Content-Type'].split(';')[0] in (
            'text/html', 'application/xhtml+xml'
        ):
            response.content = smart_unicode(response.content).replace(
                "<!-- ____SIZE_AND_DATE_PLACEHOLDER____ -->", 
                "(%s, %0.3f seconds)" % (
                    filesizeformat(len(response.content)),
                    time.time() - request._request_start_time,
                )
            )
        return response

More like this

  1. get_object_or_none by azwdevops 1 month, 1 week ago
  2. Mask sensitive data from logger by agusmakmun 3 months ago
  3. Template tag - list punctuation for a list of items by shapiromatron 1 year, 5 months ago
  4. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 1 year, 5 months ago
  5. Serializer factory with Django Rest Framework by julio 2 years ago

Comments

Please login first before commenting.