wsgi2cgi

Run CGI apps under Python WSGI protocol
Download

wsgi2cgi Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • Juan J. Martnez
  • Publisher web site:
  • http://www.usebox.net/jjm/dd2/

wsgi2cgi Tags


wsgi2cgi Description

wsgi2cgi is a tool to run CGI apps under Python WSGI protocol PEP 333.This is a simple WSGI application that executes an external process and translates the WSGI protocol to the Common Gateway Interface (CGI).Example: >>> from wsgiref.simple_server import make_server >>> import wsgi2cgi >>> def app(environ, start_response): >>> wapp = wsgi2cgi.CGI('/path/to/executable.cgi') >>> return wapp.application(environ, start_response) >>> httpd = make_server('127.0.0.1', 8000, app) >>> print "Serving on 127.0.0.1:8000..." >>> httpd.serve_forever()The WSGI application can be used with any server supporting WGSI.InstallThe module can be installed from source using setup.py: python setup.py installAlternativelly it can be installed with pip: pip install wsgi2cgiProduct's homepage


wsgi2cgi Related Software