mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-11 07:42:00 +00:00
13 lines
390 B
Python
13 lines
390 B
Python
import time
|
|
|
|
def main(request, response):
|
|
delay = float(request.GET.first("ms", 500)) / 1E3
|
|
count = int(request.GET.first("count", 50))
|
|
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("TEST_TRICKLE\n")
|
|
time.sleep(delay)
|