品易云推流 关闭
文章详情页
文章 > Python高级 > python WSGI规范是什么

python WSGI规范是什么

Python wsgi

头像

小妮浅浅

2021-07-23 09:33:384649浏览 · 0收藏 · 0评论

1、WSGI协议规定,Application端需要成为可调用目标(函数、类别等)。

def simple_app(environ, start_response):
    status = '200 OK'
    response_headers = [('Content-type', 'text/plain')]
    start_response(status, response_headers)
    return ['Hello world!\n']

2、Server端也使用函数来实现。

import os
 
 
def wsgi_server(application):
    environ = dict(os.environ.items())
 
    def start_response(status, response_headers):
        print(f'status: {status}')
        print(f'response_headers: {response_headers}')
 
    result = application(environ, start_response)
    for data in result:
        print(f'response_body: {data}')

以上就是python WSGI规范的介绍,希望对大家有所帮助。更多编程基础知识学习:python学习网

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

关注

关注公众号,随时随地在线学习

本教程部分素材来源于网络,版权问题联系站长!

底部广告图