Python Paste: Difference between revisions
Citation bot (talk | contribs) Add: title. Changed bare reference to CS1/2. | Use this bot. Report bugs. | Suggested by BrownHairedGirl | Linked from User:BrownHairedGirl/Articles_with_bare_links | #UCB_webform_linked 620/2846 |
No edit summary Tag: Reverted |
||
Line 1: | Line 1: | ||
{{Proposed deletion/dated |
|||
|concern = Not notable. There are no independent sources |
|||
|timestamp = 20220416154457 |
|||
|nom = 90.174.3.51 |
|||
|help = |
|||
}} |
|||
{{Multiple issues| |
{{Multiple issues| |
||
{{refimprove|date=December 2017}} |
{{refimprove|date=December 2017}} |
Revision as of 15:45, 16 April 2022
This article may have been previously nominated for deletion: Wikipedia:Articles for deletion/Python Paste exists. It is proposed that this article be deleted because of the following concern:
If you can address this concern by improving, copyediting, sourcing, renaming, or merging the page, please edit this page and do so. You may remove this message if you improve the article or otherwise object to deletion for any reason. Although not required, you are encouraged to explain why you object to the deletion, either in your edit summary or on the talk page. If this template is removed, do not replace it. This message has remained in place for seven days, so the article may be deleted without further notice. Find sources: "Python Paste" – news · newspapers · books · scholar · JSTOR Nominator: Please consider notifying the author/project: {{subst:proposed deletion notify|Python Paste|concern=Not notable. There are no independent sources}} ~~~~ Timestamp: 20220416154457 15:44, 16 April 2022 (UTC) Administrators: delete |
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages)
|
Developer(s) | Ian Bicking |
---|---|
Initial release | 2005 |
Stable release | 2.0.3
/ March 8, 2016 |
Repository | |
Written in | Python |
Operating system | Cross-platform |
Type | Web framework |
License | MIT License |
Python Paste, often simply called paste, is a set of utilities for web development in Python. Paste has been described as "a framework for web frameworks".[1]
The Python Paste package contains Python modules that help in implementing WSGI middleware.
The package includes a WSGI wrapper for CGI applications. It also includes a simple webserver that can produce WSGI requests.
WSGI middleware
The WSGI standard is an interface that allows applications to use Python code to handle HTTP requests. A WSGI application is passed a Python representation of an HTTP request by an application, and returns content which will normally eventually be rendered by a web browser. A common use for this is when a web server serves content created by Python code.
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 pipes on Unix systems. Functionality provided by WSGI middleware may include authentication, logging, URL redirection, creation of sessions, and compression.
Paste helps in developing such WSGI middleware systems. For example, it is used in the Pylons web application framework.
Subcomponents of Paste
Paste has been a long-running open source project, dating from at least 2005. As it has grown, it has unbundled several other utilities from the Paste core. These utilities are part of the Paste project, but form their own packages and have their own version numbers. They include:
- Paste Deploy is a system for finding and configuring WSGI applications and servers.
- Paste Script, ScriptType, INITools, Tempita, WaitForIt, WPHP, WSGIFilter, and WSGIProxy are other notable bundles.
- WebTest
- WebOb is a wrapper around the WSGI environment.
WebTest and WebOb have migrated and are now part of the Pylons project.
See also
- TurboGears
- Pylons project
- Smalltalk Seaside
- Java servlet
- Internet Server Application Programming Interface (ISAPI)
- FastCGI
- Apache Thrift (from Facebook and Evernote teams)
- Server-side JavaScript
- PHP
- Web framework