Differences between revisions 10 and 12 (spanning 2 versions)
Revision 10 as of 2009-12-12 03:17:30
Size: 2228
Editor: p65-147
Comment:
Revision 12 as of 2009-12-26 18:06:10
Size: 2290
Editor: cpc2-croy14-0-0-cust329
Comment:
Deletions are marked like this. Additions are marked like this.
Line 10: Line 10:

---- /!\ '''Edit conflict - other version:''' ----
Line 13: Line 11:

---- /!\ '''Edit conflict - your version:''' ----
  * [[http://www.amk.ca/python/code/medusa.html|Medusa, a simple framework for standalone server applications (Last updated in 2003)]]

---- /!\ '''End of edit conflict''' ----
Line 20: Line 13:
  * [[http://pypi.python.org/pypi/Spawning/| Spawning]] - a wsgi server which supports multiple processes, multiple threads, green threads, non-blocking HTTP io, and automatic graceful upgrading of code.
  * [[http://www.tornadoweb.org/|Tornado]] - an open source version of the scalable, non-blocking web server and tools that power FriendFeed.

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:

  • mod_wsgi embeds Python in the Apache HTTP server

  • ModPython embeds Python in the Apache HTTP server

  • PyWX embeds Python in AOLServer

  • Nginx WSGI support module for Nginx HTTP server

  • Modjy embeds a jython interpreter in Java Servlet containers, e.g. Tomcat, Glassfish, Websphere, etc, and supports WSGI. Distributed with jython since March 2009.

Standard Library Technologies

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


CategoryPythonWebsite CategoryJython CategoryJython

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

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