Web Server Gateway Interface: differenze tra le versioni

Contenuto cancellato Contenuto aggiunto
Smistamento lavoro sporco
+{{Interfacce web}}
 
(Una versione intermedia di un altro utente non mostrate)
Riga 13:
== Esempio ==
Un “[[Hello world]]” compatibile con WSGI scritta in [[Python]]:
<sourcesyntaxhighlight lang="python">
def application(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/plain')])
yield 'Hello World\n'
</syntaxhighlight>
</source>
 
Dove:
Riga 37:
* {{cita web|http://pythonpaste.org/|Python Paste}}
 
{{Interfacce web}}
{{portale|internet}}