summaryrefslogtreecommitdiff
path: root/test/modules/core/htdocs/cgi/delay.py
blob: f4cd319c9e04a107d8888eeeea5ecf5410595b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3
import sys, time

content="A delayed response.\n"

print("Status: 200")
print(f"Request-Length: {len(content)}")
print("Content-Type: text/plain\n")
time.sleep(1)
sys.stdout.write(content)