CoolFace
Apppublic

universalsoftware/uchat

sourceHugging Facemitupdated 8mo agoView on Hugging Face
2likes
default.wsgi44 linesDownload Raw Back to uchat
1 2CONTENT = b'''3<html>4<head>5<title>My web site runs on Malt Whiskey</title>6</head>7<body style="margin-top: 100px;">8<table align="center"; style="width: 850px;" border="0" cellpadding="30">9<tbody>10<tr>11<td>12<img style="width: 275px; height: 445px;"13  src="/__wsgi__/images/snake-whiskey.jpg">14</td>15<td style="text-align: center;">16<span style="font-family: Arial,Helvetica,sans-serif;17  font-weight: bold; font-size: 70px;">18My web site<br>runs on<br>Malt Whiskey<br>19<br>20</span>21<span style="font-family: Arial,Helvetica,sans-serif;22  font-weight: bold;">23For further information on configuring mod_wsgi,<br>24see the <a href="http://www.modwsgi.org/">documentation</a>.25</span>26</td>27</tr>28</tbody>29</table>30</body>31</html>32'''33 34def application(environ, start_response):35    status = '200 OK'36    output = CONTENT37 38    response_headers = [('Content-type', 'text/html'),39                        ('Content-Length', str(len(output)))]40    start_response(status, response_headers)41 42    return [output]43 44