1560
Comment: adding mod_wsgi
|
1941
|
Deletions are marked like this. | Additions are marked like this. |
Line 10: | Line 10: |
* [http://www.amk.ca/python/code/medusa.html Medusa, a simple framework for standalone server applications] * [http://www.zetadev.com/software/httpy/ httpy - a sane and robust Python HTTP server and library] * [http://www.cherrypy.org CherryPy - a pythonic, object-oriented HTTP framework] |
* [[http://www.amk.ca/python/code/medusa.html|Medusa, a simple framework for standalone server applications (Last updated in 2003)]] * [[http://www.zetadev.com/software/httpy/|httpy - a sane and robust Python HTTP server and library]] * [[http://www.cherrypy.org|CherryPy - a pythonic, object-oriented HTTP framework]] |
Line 18: | Line 18: |
* [http://www.modwsgi.org mod_wsgi] embeds Python in the Apache HTTP server | * [[http://www.modwsgi.org|mod_wsgi]] embeds Python in the Apache HTTP server |
Line 20: | Line 20: |
* ["PyWX"] embeds Python in AOLServer | * [[PyWX]] embeds Python in AOLServer * [[http://wiki.nginx.org/NginxNgxWSGIModule|Nginx WSGI]] support module for Nginx HTTP server * [[http://modjy.xhaus.com/|Modjy]] embeds a jython interpreter in Java Servlet containers, e.g. Tomcat, Glassfish, Websphere, etc, and supports WSGI. Distributed with jython since March 2009. |
Line 24: | Line 26: |
* [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. | * [[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. ---- CategoryPythonWebsite CategoryJython CategoryJython |
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
TwistedMatrix includes a very scalable web server written in Python.
Medusa, a simple framework for standalone server applications (Last updated in 2003)
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.