Skip to content

Instantly share code, notes, and snippets.

@yuta1723
Last active May 2, 2017 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuta1723/0bfccba1ff92f4535e626fc96ab0949a to your computer and use it in GitHub Desktop.
Save yuta1723/0bfccba1ff92f4535e626fc96ab0949a to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
from wsgiref import simple_server
def application(env, res):
status = "200 OK"
body = makeString()
header = [("Content-type", "text/html;charset=UTF-8"),("Content-Length",str(len(body)))]
res(status,header)
return [body]
def makeString():
discription = """
<html><body>
<table width='300' border='1'>
<caption>テストテーブル</caption>
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
</tr>
<tr>
<th>4</th>
<th>5</th>
<th>6</th>
</tr>
<tr>
<th>7</th>
<th>8</th>
<th>9</th>
</tr>
</table>
</body></html>
"""
#body = "Hello wsgi application\n"
print discription
return discription
if __name__ == "__main__":
sv = simple_server.make_server("", 8080, application) #host , port , application
sv.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment