Source code

Revision control

Copy as Markdown

Other Tools

import time
def main(request, response):
time.sleep(1)
headers = [(b"Content-Type", b"text/html")]
return headers, u'''
<!DOCTYPE html>
<head>
</head>
<body>
DELAYED FRAME
</body
'''