【说站】python WSGI规范是什么
2024-11-21
3
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}')
以上就是python WSGI规范的介绍,希望对大家有所帮助。更多编程基础知识学习:python学习网
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:5小时前赞一波!
相关文章
- 【说站】python中Queue如何通信
- 【说站】python中进程池Pool的初始化
- 【说站】python Pool常用函数有哪些
- 【说站】python整数的进制转换
- 【说站】python如何使用send唤醒
- 【说站】python gevent的原理分析
- 【说站】python生成器创建的方法整理
- 【说站】本月编程语言排行:C语言稳居榜首,python持续上升
- 【说站】python密码生成器的使用
- 【说站】python模块如何传入参数
- 【说站】python模块的介绍和导入
- 【说站】招聘月:Python数据分析岗位迎来机遇
- 【说站】python调用函数的注意点
- 【说站】python中try-except-finally语句的使用
- 【说站】python raise语句的两种用法
- 【说站】python try-except捕获异常的方法
- 【说站】python对象方法是什么
- 【说站】python函数的理解及定义
- 【说站】python类如何实例化对象
- 【说站】python中函数的作用探究
文章评论
评论问答