Python Paste: Difference between revisions

Content deleted Content added
External links: Pruned EL section to meet WP:EL
Adding local short description: "Python web development utilities", overriding Wikidata description "set of utilities for web development in Python"
 
(17 intermediate revisions by 14 users not shown)
Line 1:
{{Short description|Python web development utilities}}
 
{{Multiple issues|
{{refimprove|date=December 2017}}
{{notability|Products|date=May 2021}}
}}
 
{{Infobox software
| name = Paste
| logo =
| license developer = [[MITIan License]]Bicking
| released = {{start date|2005}}
| latest release version = 12.70.5.13
| latest release date = {{releasestart date and age|20102016|0903|2008}}
| genre = [[Web application framework]]
| license = [[MIT License]]
| programming language = [[Python (programming language)|Python]]
| operating system = [[Cross-platform]]
| developergenre = Ian[[Web Bickingframework]]
| websitelicense = {{URL|http://pythonpaste.org/}}[[MIT License]]
}}
'''Python Paste''', often simply called '''paste''', is a set of [[utility software|utilities]] for [[web development]] in [[Python (programming language)|Python]]. Paste has been described as "a framework for [[web framework]]s".<ref>{{Cite web|url=http://blog.ianbicking.org/its-not-another-damn-framework.html|title = It's Not Another Damn Framework}}</ref>
 
The Python Paste package contains Python modules that help in implementing [[Web Server Gateway Interface|WSGI]] middleware.
Line 23 ⟶ 29:
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 ==
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:
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:
* WebOb is a wrapper around the WSGI environment.
* Paste Deploy is a system for finding and configuring WSGI applications and servers.
* Paste Script, WebTest, 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==
Line 42 ⟶ 49:
* [[Server-side JavaScript]]
* [[PHP]]
* [[Web application framework]]
 
==References==
Line 53 ⟶ 60:
{{Web server software}}
 
[[Category:Python (programming language) web frameworks]]