CoolFace
Apppublic

universalsoftware/uchat

sourceHugging Facemitupdated 8mo agoView on Hugging Face
2likes
test.wsgi8 linesDownload Raw Back to bot
1def application(environ, start_response):2    status = '200 OK'3    output = b'Hello World!'4    response_headers = [('Content-type', 'text/plain'),5                    ('Content-Length', str(len(output)))]6    start_response(status, response_headers)7    return [output]8