Difference between revisions of "CLARIN/Python Paste Introduction"
From PDP/Grid Wiki
Jump to navigationJump to search (add repoze.who) |
|||
Line 1: | Line 1: | ||
[http://pythonpaste.org/ Python Paste] is a (web) framework useful for building WSGi applications. Its most visible component is [http://pythonpaste.org/deploy/ Deploy], containing a configuration file for building a web application out of basic components. This page is an introduction to using Paste with a focus on authentication and authorization, more specific on OAuth2. Not much prior experience with Paste is required. | [http://pythonpaste.org/ Python Paste] is a (web) framework useful for building WSGi applications. Its most visible component is [http://pythonpaste.org/deploy/ Deploy], containing a configuration file for building a web application out of basic components. This page is an introduction to using Paste with a focus on authentication and authorization, more specific on OAuth2. Not much prior experience with Paste is required. | ||
+ | |||
+ | Within Paste, [http://docs.repoze.org/who/2.0/ repoze.who] can used to manage authentication ([http://docs.repoze.org/who/2.0/api.html api]). Different [docs.repoze.org/who/2.0/plugins.html plugins] are used to provide HTTP, form-based and other forms of authentication (the external [http://code.gustavonarea.net/repoze.who-friendlyform/ friendlyform] plugin can be useful as well). | ||
== Hello static == | == Hello static == |
Revision as of 11:54, 11 September 2012
Python Paste is a (web) framework useful for building WSGi applications. Its most visible component is Deploy, containing a configuration file for building a web application out of basic components. This page is an introduction to using Paste with a focus on authentication and authorization, more specific on OAuth2. Not much prior experience with Paste is required.
Within Paste, repoze.who can used to manage authentication (api). Different [docs.repoze.org/who/2.0/plugins.html plugins] are used to provide HTTP, form-based and other forms of authentication (the external friendlyform plugin can be useful as well).