wsgi服务器

主要是通过application函数来响应http请求,environ包含http请求的dict对象,start_response为http响应函数

hello.py

def application(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/html')])
    body = '<h1>Hello, %s!</h1>' % (environ['PATH_INFO'][1:] or 'webbbb')
    return [body.encode('utf-8')]

server.py

from wsgiref.simple_server import make_server
# 导入我们自己编写的application函数:
from hello import application
# 创建一个服务器,IP地址为空,端口是8000,处理函数是application:
httpd = make_server('127.0.0.1', 8000, application)
print('Serving HTTP on port 8000...')
# 开始监听HTTP请求:
httpd.serve_forever()
原文地址:https://www.cnblogs.com/dynas/p/6792695.html