导语:
本文主要介绍了关于python WSGI规范是什么的相关知识,希望可以帮到处于编程学习途中的小伙伴
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}')
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中获取字符串的长度10/01
- ♥ Python3中将时间戳转换为指定格式日期的方法01/05
- ♥ python3中不等于什么10/12
- ♥ python是什么语言08/26
- ♥ 如何在python中使用简单的BP算法?12/03
- ♥ python如何定义一个接受参数的函数01/07
内容反馈