blob: 5a46c5e82e6a47297f7bece818795e3a3db64471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import time
def main(request, response):
chunk = "TEST_TRICKLE\n"
delay = float(request.GET.first("ms", 500)) / 1E3
count = int(request.GET.first("count", 50))
if "specifylength" in request.GET:
response.headers.set("Content-Length", count * len(chunk))
time.sleep(delay)
response.headers.set("Content-type", "text/plain")
response.write_status_headers()
time.sleep(delay);
for i in xrange(count):
response.writer.write_content(chunk)
time.sleep(delay)
|