I'm using Python Bottle.
What would be an efficient way to measure and display the page generation time? (i.e. more or less server time used)
Of course, something like:
start = time.time()
...
generationtime = time.time() - start
would work, but where to put it on a page? Where is exactly the start (earliest point where request arrives), and when is the latest point before sending to client?