Example Application
A WSGI-compatible “Hello World” application written in Python:
def application(environ, start_response): start_response('200 OK', ) yield 'Hello World\n'Where:
- Line 1 defines a callable named
application
, which takes two parameters,environ
andstart_response
.environ
is a dictionary containing environment variables in CGI.start_response
is a callable taking two required parametersstatus
andresponse_headers
. - Line 2 calls
start_response
, specifying "200 OK" as the status and a "Content-Type" header. - Line 3 returns the body of response as a string literal.
Read more about this topic: Web Server Gateway Interface
Famous quotes containing the word application:
“Science is intimately integrated with the whole social structure and cultural tradition. They mutually support one otheronly in certain types of society can science flourish, and conversely without a continuous and healthy development and application of science such a society cannot function properly.”
—Talcott Parsons (19021979)
“It would be disingenuous, however, not to point out that some things are considered as morally certain, that is, as having sufficient certainty for application to ordinary life, even though they may be uncertain in relation to the absolute power of God.”
—René Descartes (15961650)