×

Web Server Gateway Interface

Web Server Gateway Interface は、プログラミング言語Pythonにおいて、WebサーバとWebアプリケーションを接続するための、標準化されたインタフェース定義である。また、WSGIから着想を得て、他の言語でも同様のインタフェースが作られた。 ウィキペディア
The Web Server Gateway Interface is a simple calling convention for web servers to forward requests to web applications or frameworks written in the Python ...
WSGI is the Web Server Gateway Interface. It is a specification that describes how a web server communicates with web applications, and how web applications can ...
関連する質問
A Web Server Gateway Interface (WSGI) server runs Python code to create a web application. Learn more about WSGI servers on Full Stack Python.
What is WSGI? Learn about WSGI · Frameworks that run on WSGI · Servers which support WSGI · Applications that run on WSGI · Middleware and libraries for ...
Specification Overview. The WSGI interface has two sides: the “server” or “gateway” side, and the “application” or “framework” side. The server side invokes a ...
2023/10/16 · The Web Server Gateway Interface (WSGI) is a standard interface between web server software and web applications written in Python.
The key concept of deploying with WSGI is the application callable which the application server uses to communicate with your code. It's commonly provided as an ...
It is just an interface specification by which server and application communicate. Both server and application interface sides are specified in the PEP 3333. If ...
Almost all Python web frameworks use WSGI to communicate with their web servers. This is how Django, Flask, and many other popular frameworks do it.