Differences between revisions 4 and 5
Revision 4 as of 2007-12-05 21:01:15
Size: 1481
Editor: static-202-45-119-135
Comment:
Revision 5 as of 2008-02-25 01:10:01
Size: 1560
Editor: 193
Comment: adding mod_wsgi
Deletions are marked like this. Additions are marked like this.
Line 18: Line 18:
  * [http://www.modwsgi.org mod_wsgi] embeds Python in the Apache HTTP server

Web Servers and Python

Python-based Web servers have been available in the standard library for many years (see the BaseHTTPServer, SimpleHTTPServer and CGIHTTPServer modules). To address various issues of scalability, robustness and convenience with such existing servers, other server frameworks and solutions have been developed since that time.

Web Servers written in Python

Web Servers embedding Python

In addition to the above, some non-Python-based Web servers support Python-based applications by embedding the Python virtual machine for improved performance:

  • [http://www.modwsgi.org mod_wsgi] embeds Python in the Apache HTTP server

  • ModPython embeds Python in the Apache HTTP server

  • ["PyWX"] embeds Python in AOLServer

Standard Library Technologies

  • [wiki:BaseHttpServer BaseHTTPServer] (along with successors such as DocXmlRpcServer) can be considered as the original Python Web framework, but it really just provides the ability to process HTTP requests and to generate responses using a relatively primitive API. Some WebFrameworks use it as the basis for serving content, however.

WebServers (last edited 2018-05-19 23:33:35 by StevePiercy)

Unable to edit the page? See the FrontPage for instructions.