Python编程:WSGI服务器的参考实现wsgiref模块
【摘要】 WSGI的全称是Web Server Gateway Interface,Web服务器网关接口
具体的来说,WSGI是一个规范,定义了Web服务器如何与Python应用程序进行交互
WSGI 相当于是Web服务器和Python应用程序之间的桥梁
...
WSGI的全称是Web Server Gateway Interface,Web服务器网关接口
具体的来说,WSGI是一个规范,定义了Web服务器如何与Python应用程序进行交互
WSGI 相当于是Web服务器和Python应用程序之间的桥梁
使用python内置的模块实现一个服务器
python3下示例
# WSGI服务器的参考实现
# 【应用程序】
# 处理函数
def application(environ, start_response): start_response("200 OK", [('Content-Type', 'text/html')]) body = "<h1>hello world %s<h1>"% (environ["PATH_INFO"][1:] or "web") return [ body.encode()]
# 【服务器】
from wsgiref.simple_server import make_server
# 创建一个服务器,是application
server = make_server("localhost", 9999, application)
print("服务启动,按Ctrl+C终止... http://localhost:9999/")
# 开始监听HTTP请求
server.serve_forever()
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
参考
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/80738858
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)