17 lines
244 B
Python
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)
|