mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
12 lines
390 B
Python
12 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)
|