简单的wsgi server请求示例

WSGI : web server gateway interface
只是用来接收浏览器的html请求,将python响应body的以html文档发送给浏览器

//hello.py
def application(environ, start_response):
    start_response('200 0k', [("Content-Type", "text/html")])
    body = "

it's me: %s

"
% (environ["PATH_INFO"][1:]) return [body.encode('utf-8')]
//server.py
from wsgiref.simple_server import make_server
from hello import application

httpd = make_server('', 8999, application)
print "Server start on port 8999....."
httpd.serve_forever()

//运行代码
python  server.py
Server start on port 8999.....
127.0.0.1 - - [26/Aug/2021 17:50:58] "GET /haode HTTP/1.1" 200 23
127.0.0.1 - - [26/Aug/2021 17:50:58] "GET /favicon.ico HTTP/1.1" 200 29

浏览器访问:
http://127.0.0.1:8999/haoren

简单的wsgi server请求示例_第1张图片

你可能感兴趣的:(python,http,html)