Files
cweb/cgi/sleep.py
cdricms e24c207bdc Final
2024-11-20 18:29:11 +01:00

17 lines
244 B
Python

import time
time.sleep(5)
code = 200
ct = "text/html"
content = "<!DOCTYPE html><html><body><h1>Je dormais!</h1></body></html>"
response = f"""
HTTP/1.1 {code}
Content-Type: {ct}
Content-Length: {len(content)}
{content}
"""
print(response)