Python Paste: Difference between revisions

Content deleted Content added
2.0.2
update links
Line 10:
| programming language = [[Python (programming language)|Python]]
| operating system = [[Cross-platform]]
| genre = [[Web application framework]]
| license = [[MIT License]]
}}
Line 24:
There are, however, other uses: '''WSGI middleware''' is Python code that receives a WSGI request and then performs logic based upon this request, before passing the request on to a WSGI application or more WSGI middleware. WSGI middleware appears to an application as a server, and to the server as an application. This is analogous to the function of [[Pipeline (Unix)|pipes on Unix systems]]. Functionality provided by WSGI middleware may include authentication, logging, [[URL redirection]], creation of [[session (computer science)|session]]s, and compression.
 
Paste helps in developing such WSGI middleware systems. For example, it is used in the [[Pylons project#Pylons(web Frameworkframework)|Pylons]] web application framework.
 
==Subcomponents of Paste ==
Line 42:
* [[Server-side JavaScript]]
* [[PHP]]
* [[Web application framework]]
 
==References==