aplicaciones WSGI limpio, sin un marco de pleno derecho:
from wsgiref.simple_server import make_server
def application(environ, start_response):
# Sorting and stringifying the environment key, value pairs
response_body = ['%s: %s' % (key, value)
for key, value in sorted(environ.items())]
response_body = '\n'.join(response_body)
status = '200 OK'
response_headers = [('Content-Type', 'text/plain'),
('Content-Length', str(len(response_body)))]
start_response(status, response_headers)
return [response_body]
# Instantiate the WSGI server.
# It will receive the request, pass it to the application
# and send the application's response to the client
httpd = make_server(
'localhost', # The host name.
8051, # A port number where to wait for the request.
application # Our application object name, in this case a function.
)
# Wait for a single request, serve it and quit.
httpd.handle_request()
continuación, puede utilizar Nginx: http://wiki.nginx.org/NgxWSGIModule
Esta es la más estable, seguro y desnuda configuración a hueso.
Más ejemplos en: https://bitbucket.org/lifeeth/mod_wsgi/src/6975f0ec7eeb/examples/.
Esta es la mejor manera de aprender (como usted pidió). Ya me he ido por este camino.
Los requisitos mínimos son Python y un marco web. ;-) – Keith
"... y ejecutar páginas web ..."? ¿Huh? ¿Qué quieres decir con eso? –
@Chris, tal vez signifique verlos con IE;) –