quartz/content/computer_sci/code_frame_learn/flask/MSGI.md
2024-03-06 18:12:14 +08:00

535 B

title tags date
Web Server Gateway Interface
flask
python
web
2024-03-06

WSGI 的全程是 Web Server Gateway Interface,中文翻译为 Web 服务器网关接口。它是一种规范,定义了 Web 服务器和 Python Web 应用程序或框架之间的一种简单而通用的接口。

WSGI 规范的目的是使 Python Web 开发人员能够编写可移植和可扩展的 Web 应用程序。WSGI 应用程序可以与任何兼容 WSGI 的 Web 服务器一起使用,而无需进行任何修改。