Python Paste: Difference between revisions

Content deleted Content added
Adding local short description: "Python web development utilities", overriding Wikidata description "set of utilities for web development in Python"
 
(34 intermediate revisions by 28 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 = ?
| released developer = {{startIan date|2005|?}}Bicking
| license released = [[MIT{{start License]]date|2005}}
| latest release version = 1.7.5.1
| latest release date version = [[20 September 2010]]2.0.3
| latest release date = {{start date and age|2016|03|08}}
| genre = [[Web application framework]]
| license = [[MIT License]]
| programming language = [[Python (programming language)|Python]]
| operating system = [[Cross-platform]]
| developergenre = Ian[[Web Bickingframework]]
| websitelicense = {{URL|http://www.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://redditblog.comianbicking.org/r/programming/info/ehyf/comments/ceifhits-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.
==Python Paste==
The Python Paste package contains Python modules that help in implementing [[Web Server Gateway Interface|WSGI]] middleware.
 
The package includes a WSGI wrapper for [[Common Gateway Interface|CGI]] applications. It also includes a simple webserver that can produce WSGI requests.
 
==WSGI middleware==
The [[Web Server Gateway Interface|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.
 
The [[Web Server Gateway Interface|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 [[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 38 ⟶ 43:
* [[Pylons project]]
* [[Seaside (software)|Smalltalk Seaside]]
* [[Java Servletservlet]]
* [[Internet Server Application Programming Interface]] (ISAPI)
* [[ISAPI]]
* [[FastCGI]]
* [[Thrift (protocol)|Apache Thrift]] (from Facebook and Evernote teams)
* [[Server-side JavaScript]]
* [[PHP]]
* [[Web application framework]]
 
==References==
Line 50 ⟶ 55:
 
==External links==
*{{Official website}}
* [http://pythonpaste.org Python Paste]: official site
* [http://www.ianbicking.org Ian Bicking] page
* [http://video.google.com/videoplay?docid=-872784530622495809 Ben Bangert's Google Tech Talk], Sep 13, 2006
* [http://pycon.blogspot.com/2009/03/pycon-2009-videos.html Ian Bicking's Topics of Interest, 4:30-9:30], PyCon 2009
 
{{Python Web Application Frameworks}}
 
[[Category:{{Python web application frameworks]]}}
{{Web server software}}
 
[[ruCategory:Python Paste(programming language) web frameworks]]