简单的wsgi server请求示例

本文详细解读了Web Server Gateway Interface (WSGI)的概念,如何用Python接收浏览器请求并返回HTML响应,通过hello.py和server.py实例演示了其工作原理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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 = "<h1>it's me: %s</h1>" % (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

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值