Differences between revisions 1 and 2
Revision 1 as of 2006-08-10 18:56:29
Size: 1016
Editor: PaulBoddie
Comment: Part of a revitalised WebProgramming section
Revision 2 as of 2007-10-18 16:28:53
Size: 1396
Editor: PaulBoddie
Comment: Moved BaseHTTPServer here.
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:

== 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.

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:

  • 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.