千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:成都千锋IT培训  >  技术干货  >  python实现WSGI的框架

python实现WSGI的框架

来源:千锋教育
发布人:xqq
时间: 2023-11-08 19:46:26

python中实现WSGI的框架

1、说明

Application类对WSGI又做了一层简单的封装,由于上面说过WSGI函数返回的是一个可以迭代对象,所以需要实现一个__iter__方法,里面控制了客户端的请求路由并且返回不同的输出。

2、实例

fromwsgiref.simple_serverimportmake_server

classApplication(object):

def__init__(self,environ,start_response):

self.start_response=start_response

self.path=environ['PATH_INFO']

def__iter__(self):

ifself.path=='/':

status='200OK'

response_headers=[('Content-type','text/html')]

self.start_response(status,esponse_headers)

yield'

Hello,World!

'.encode('utf-8')

elifself.path=='/wsgi':

status='200OK'

response_headers=[('Content-type','text/html')]

self.start_response(status,response_headers)

yield'

Hello,WSGI!

'.encode('utf-8')

else:

status='404NOTFOUND'

response_headers=[('Content-type','text/html')]

self.start_response(status,response_headers)

yield'

404NOTFOUND

'.encode('utf-8')

if__name__=="__main__":

app=make_server('127.0.0.1',8000,Application)

print('ServingHTTPonport8000...')

app.serve_forever()

以上就是Python中实现WSGI的框架,希望对大家有所帮助。更多Python学习推荐:请关注IT培训机构:千锋教育。

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

python delattr函数如何使用?

2023-11-10

python time.strptime的格式化

2023-11-10

pythonGIL在Python多线程的应用

2023-11-10

最新文章NEW

python中pdb模块怎么用?

2023-11-10

Python如何截图保存?

2023-11-10

python​中缺少module怎么办?

2023-11-10

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>