您的位置:首页 > 编程语言 > Python开发

Introduction to the Python Web Server Gateway Interface (WSGI)

2016-09-25 16:04 639 查看
In breif 

WSGI is a specification, laid out in PEP 333, for a
standardized interface between Web servers and Python Web frameworks/applications.
The goal is to provide a relatively simple yet comprehensive interface capable of supporting all (or most) interactions
between a Web server and a Web framework. (Think "CGI" but programmatic rather than I/O based.)
An additional goal is to
support "middleware" components
for pre- and post-processing of requests: think gzip, recording, proxy, load-balancing.
No mechanism for deployment and relatively few mechanisms for configuration are specified in the PEP. (That's a problem Python
Paste targets.)

Nedd to know

Unless you are developing a new Web app framework (admittedly, p > 0.5...) you don't care about
WSGI. Use a Web app framework. They all support WSGI at this point, which means you basically need to worry about configuration and deployment of your app, and nothing else.

Specification

The PEP specifies three roles: the role of a server, the role of a framework/app, and the role of a middleware object.

Web server side

The server must provide two things:
an environ dictionary, and a start_response function.
The environ dictionary needs to have the usual things present -- it's similar to the CGI environment.start_response is a callable
that takes two arguments
, status -- containing a standard HTTP status string like 200 OK --
and response_headers -- a list of standard HTTP response headers.
The Web server dispatches a request to the framework/app by calling the application:
iterable = app(environ, start_response)
for data in iterable:
# send data to client

It's the framework/app's responsibility
to build the headers, call start_response, and build the data returned in iterable.
It's the Web server's responsibility to serve both the headers and the data up via HTTP.

Web framework/app side

The Web framework/app is represented to the server as a Python callable. It can be a class, an object, or a function. The arguments to __init__, __call__,
or the function must be as above: an environ object and a start_response callable.
The Web framework/app must call start_response before returning or yielding
any data
.
The Web framework/app should return any data in an iterable form -- e.g. return [ page ].

Middleware

Middleware components must obey both the Web server side and the Web app/framework side of things, plus a few more minor niggling restrictions. Middleware
should be as transparent as possible.

Example

Here's a very simple WSGI application that returns a static "Hello world!" page.
def simple_app(environ, start_response):
status = '200 OK'
response_headers = [('Content-type','text/plain')]
start_response(status, response_headers)
return ['Hello world!\n']

Here's a very simple middleware application that uppercases everything sent:
class Upperware:
def __init__(self, app):
self.wrapped_app = app

def __call__(self, environ, start_response):
for data in self.wrapped_app(environ, start_response):
return data.upper()

To instantiate/run these from the server's perspective, you just do the obvious:
serve(simple_app)

or
wrapped_app = Upperware(simple_app)
serve(wrapped_app)

Yes, it can be that simple: here's my code for running Trac via scgiserver.
#!/usr/bin/env python
from trac.web.main import dispatch_request as app
from scgiserver import serve_application

PREFIX=''
PORT=4101

serve_application(app, PREFIX, PORT)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: