Defining Views¶
A view callable in a traversal-based Pyramid application is typically a simple Python function that accepts two parameters: context and request. A view callable is assumed to return a response object.
Note
A Pyramid view can also be defined as callable
which accepts only a request argument. You'll see
this one-argument pattern used in other Pyramid tutorials
and applications. Either calling convention will work in any
Pyramid application; the calling conventions can be used
interchangeably as necessary. In traversal-based applications,
URLs are mapped to a context resource, and since our
resource tree also represents our application's
"domain model", we're often interested in the context because
it represents the persistent storage of our application. For
this reason, in this tutorial we define views as callables that
accept context
in the callable argument list. If you do
need the context
within a view function that only takes
the request as a single argument, you can obtain it via
request.context
.
We're going to define several view callable functions, then wire them into Pyramid using some view configuration.
Declaring Dependencies in Our setup.py
File¶
The view code in our application will depend on a package which is not a dependency of the original "tutorial" application. The original "tutorial" application was generated by the cookiecutter; it doesn't know about our custom application requirements.
We need to add a dependency on the docutils
package to our tutorial
package's setup.py
file by assigning this dependency to the requires
parameter in the setup()
function.
Open setup.py
and edit it to look like the following:
1import os
2
3from setuptools import setup, find_packages
4
5here = os.path.abspath(os.path.dirname(__file__))
6with open(os.path.join(here, 'README.txt')) as f:
7 README = f.read()
8with open(os.path.join(here, 'CHANGES.txt')) as f:
9 CHANGES = f.read()
10
11requires = [
12 'plaster_pastedeploy',
13 'pyramid >= 1.9a',
14 'pyramid_chameleon',
15 'pyramid_debugtoolbar',
16 'pyramid_retry',
17 'pyramid_tm',
18 'pyramid_zodbconn',
19 'transaction',
20 'ZODB3',
21 'waitress',
22 'docutils',
23]
24
25tests_require = [
26 'WebTest >= 1.3.1', # py3 compat
27 'pytest>=3.7.4',
28 'pytest-cov',
29]
30
31setup(
32 name='tutorial',
33 version='0.0',
34 description='myproj',
35 long_description=README + '\n\n' + CHANGES,
36 classifiers=[
37 'Programming Language :: Python',
38 'Framework :: Pyramid',
39 'Topic :: Internet :: WWW/HTTP',
40 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
41 ],
42 author='',
43 author_email='',
44 url='',
45 keywords='web pyramid pylons',
46 packages=find_packages(),
47 include_package_data=True,
48 zip_safe=False,
49 extras_require={
50 'testing': tests_require,
51 },
52 install_requires=requires,
53 entry_points={
54 'paste.app_factory': [
55 'main = tutorial:main',
56 ],
57 },
58)
Only the highlighted line needs to be added.
Running pip install -e .
¶
Since a new software dependency was added, you will need to run pip install
-e .
again inside the root of the tutorial
package to obtain and register
the newly added dependency distribution.
Make sure your current working directory is the root of the project (the
directory in which setup.py
lives) and execute the following command.
On Unix:
cd tutorial
$VENV/bin/pip install -e .
On Windows:
cd tutorial
%VENV%\Scripts\pip install -e .
Success executing this command will end with a line to the console something like:
Successfully installed docutils-0.13.1 tutorial
Adding view functions in views.py
¶
It's time for a major change. Open tutorial/views.py
and edit it to look
like the following:
1from docutils.core import publish_parts
2import re
3
4from pyramid.httpexceptions import HTTPFound
5from pyramid.view import view_config
6
7from .models import Page
8
9# regular expression used to find WikiWords
10wikiwords = re.compile(r"\b([A-Z]\w+[A-Z]+\w+)")
11
12@view_config(context='.models.Wiki')
13def view_wiki(context, request):
14 return HTTPFound(location=request.resource_url(context, 'FrontPage'))
15
16@view_config(context='.models.Page', renderer='templates/view.pt')
17def view_page(context, request):
18 wiki = context.__parent__
19
20 def check(match):
21 word = match.group(1)
22 if word in wiki:
23 page = wiki[word]
24 view_url = request.resource_url(page)
25 return '<a href="%s">%s</a>' % (view_url, word)
26 else:
27 add_url = request.application_url + '/add_page/' + word
28 return '<a href="%s">%s</a>' % (add_url, word)
29
30 content = publish_parts(context.data, writer_name='html')['html_body']
31 content = wikiwords.sub(check, content)
32 edit_url = request.resource_url(context, 'edit_page')
33 return dict(page=context, content=content, edit_url=edit_url)
34
35@view_config(name='add_page', context='.models.Wiki',
36 renderer='templates/edit.pt')
37def add_page(context, request):
38 pagename = request.subpath[0]
39 if 'form.submitted' in request.params:
40 body = request.params['body']
41 page = Page(body)
42 page.__name__ = pagename
43 page.__parent__ = context
44 context[pagename] = page
45 return HTTPFound(location=request.resource_url(page))
46 save_url = request.resource_url(context, 'add_page', pagename)
47 page = Page('')
48 page.__name__ = pagename
49 page.__parent__ = context
50 return dict(page=page, save_url=save_url)
51
52@view_config(name='edit_page', context='.models.Page',
53 renderer='templates/edit.pt')
54def edit_page(context, request):
55 if 'form.submitted' in request.params:
56 context.data = request.params['body']
57 return HTTPFound(location=request.resource_url(context))
58
59 return dict(page=context,
60 save_url=request.resource_url(context, 'edit_page'))
We added some imports and created a regular expression to find "WikiWords".
We got rid of the my_view
view function and its decorator that was added
when originally rendered after we selected the zodb
backend option in the
cookiecutter. It was only an example and isn't relevant to our application.
Then we added four view callable functions to our views.py
module:
view_wiki()
- Displays the wiki itself. It will answer on the root URL.view_page()
- Displays an individual page.add_page()
- Allows the user to add a page.edit_page()
- Allows the user to edit a page.
We'll describe each one briefly in the following sections.
Note
There is nothing special about the filename views.py
. A project may
have many view callables throughout its codebase in arbitrarily named
files. Files implementing view callables often have view
in their
filenames (or may live in a Python subpackage of your application package
named views
), but this is only by convention.
The view_wiki
view function¶
Following is the code for the view_wiki
view function and its decorator:
12@view_config(context='.models.Wiki')
13def view_wiki(context, request):
14 return HTTPFound(location=request.resource_url(context, 'FrontPage'))
Note
In our code, we use an import that is relative to our package
named tutorial
, meaning we can omit the name of the package in the
import
and context
statements. In our narrative, however, we refer
to a class and thus we use the absolute form, meaning that the name of
the package is included.
view_wiki()
is the default view that gets called when a request is
made to the root URL of our wiki. It always redirects to an URL which
represents the path to our "FrontPage".
We provide it with a @view_config
decorator which names the class
tutorial.models.Wiki
as its context. This means that when a Wiki resource
is the context and no view name exists in the request, then this view
will be used. The view configuration associated with view_wiki
does not
use a renderer
because the view callable always returns a response
object rather than a dictionary. No renderer is necessary when a view returns
a response object.
The view_wiki
view callable always redirects to the URL of a Page resource
named "FrontPage". To do so, it returns an instance of the
pyramid.httpexceptions.HTTPFound
class (instances of which implement
the pyramid.interfaces.IResponse
interface, like
pyramid.response.Response
does). It uses the
pyramid.request.Request.route_url()
API to construct an URL to the
FrontPage
page resource (i.e., http://localhost:6543/FrontPage
), and
uses it as the "location" of the HTTPFound
response, forming an HTTP
redirect.
The view_page
view function¶
Here is the code for the view_page
view function and its decorator:
16@view_config(context='.models.Page', renderer='templates/view.pt')
17def view_page(context, request):
18 wiki = context.__parent__
19
20 def check(match):
21 word = match.group(1)
22 if word in wiki:
23 page = wiki[word]
24 view_url = request.resource_url(page)
25 return '<a href="%s">%s</a>' % (view_url, word)
26 else:
27 add_url = request.application_url + '/add_page/' + word
28 return '<a href="%s">%s</a>' % (add_url, word)
29
30 content = publish_parts(context.data, writer_name='html')['html_body']
31 content = wikiwords.sub(check, content)
32 edit_url = request.resource_url(context, 'edit_page')
33 return dict(page=context, content=content, edit_url=edit_url)
The view_page
function is configured to respond as the default view
of a Page resource. We provide it with a @view_config
decorator which
names the class tutorial.models.Page
as its context. This means that
when a Page resource is the context, and no view name exists in the
request, this view will be used. We inform Pyramid this view will use
the templates/view.pt
template file as a renderer
.
The view_page
function generates the reStructuredText body of a
page (stored as the data
attribute of the context passed to the view; the
context will be a Page
resource) as HTML. Then it substitutes an HTML
anchor for each WikiWord reference in the rendered HTML using a compiled
regular expression.
The curried function named check
is used as the first argument to
wikiwords.sub
, indicating that it should be called to provide a value for
each WikiWord match found in the content. If the wiki (our page's
__parent__
) already contains a page with the matched WikiWord name, the
check
function generates a view link to be used as the substitution value
and returns it. If the wiki does not already contain a page with the
matched WikiWord name, the function generates an "add" link as the
substitution value and returns it.
As a result, the content
variable is now a fully formed bit of HTML
containing various view and add links for WikiWords based on the content of
our current page resource.
We then generate an edit URL because it's easier to do here than in the template, and we wrap up a number of arguments in a dictionary and return it.
The arguments we wrap into a dictionary include page
, content
, and
edit_url
. As a result, the template associated with this view callable
(via renderer=
in its configuration) will be able to use these names to
perform various rendering tasks. The template associated with this view
callable will be a template which lives in templates/view.pt
.
Note the contrast between this view callable and the view_wiki
view
callable. In the view_wiki
view callable, we unconditionally return a
response object. In the view_page
view callable, we return a
dictionary. It is always fine to return a response object from a
Pyramid view. Returning a dictionary is allowed only when there is a
renderer associated with the view callable in the view configuration.
The add_page
view function¶
Here is the code for the add_page
view function and its decorator:
35@view_config(name='add_page', context='.models.Wiki',
36 renderer='templates/edit.pt')
37def add_page(context, request):
38 pagename = request.subpath[0]
39 if 'form.submitted' in request.params:
40 body = request.params['body']
41 page = Page(body)
42 page.__name__ = pagename
43 page.__parent__ = context
44 context[pagename] = page
45 return HTTPFound(location=request.resource_url(page))
46 save_url = request.resource_url(context, 'add_page', pagename)
47 page = Page('')
48 page.__name__ = pagename
49 page.__parent__ = context
50 return dict(page=page, save_url=save_url)
The add_page
function is configured to respond when the context resource
is a Wiki and the view name is add_page
. We provide it with a
@view_config
decorator which names the string add_page
as its
view name (via name=
), the class tutorial.models.Wiki
as its
context, and the renderer named templates/edit.pt
. This means that when a
Wiki resource is the context, and a view name named add_page
exists as the result of traversal, this view will be used. We inform
Pyramid this view will use the templates/edit.pt
template file as a
renderer
. We share the same template between add and edit views, thus
edit.pt
instead of add.pt
.
The add_page
function will be invoked when a user clicks on a WikiWord
which isn't yet represented as a page in the system. The check
function
within the view_page
view generates URLs to this view. It also acts as a
handler for the form that is generated when we want to add a page resource.
The context
of the add_page
view is always a Wiki resource (not a
Page resource).
The request subpath in Pyramid is the sequence of names that
are found after the view name in the URL segments given in the
PATH_INFO
of the WSGI request as the result of traversal. If our
add view is invoked via, e.g., http://localhost:6543/add_page/SomeName
,
the subpath will be a tuple: ('SomeName',)
.
The add view takes the zeroth element of the subpath (the wiki page name), and aliases it to the name attribute in order to know the name of the page we're trying to add.
If the view rendering is not a result of a form submission (if the
expression 'form.submitted' in request.params
is False
), the view
renders a template. To do so, it generates a "save url" which the template
uses as the form post URL during rendering. We're lazy here, so we're trying
to use the same template (templates/edit.pt
) for the add view as well as
the page edit view. To do so, we create a dummy Page resource object in
order to satisfy the edit form's desire to have some page object exposed as
page
, and we'll render the template to a response.
If the view rendering is a result of a form submission (if the expression
'form.submitted' in request.params
is True
), we grab the page body
from the form data, create a Page object using the name in the subpath and
the page body, and save it into "our context" (the Wiki) using the
__setitem__
method of the context. We then redirect back to the
view_page
view (the default view for a page) for the newly created page.
The edit_page
view function¶
Here is the code for the edit_page
view function and its decorator:
52@view_config(name='edit_page', context='.models.Page',
53 renderer='templates/edit.pt')
54def edit_page(context, request):
55 if 'form.submitted' in request.params:
56 context.data = request.params['body']
57 return HTTPFound(location=request.resource_url(context))
58
59 return dict(page=context,
60 save_url=request.resource_url(context, 'edit_page'))
The edit_page
function is configured to respond when the context is
a Page resource and the view name is edit_page
. We provide it
with a @view_config
decorator which names the string edit_page
as its
view name (via name=
), the class tutorial.models.Page
as its
context, and the renderer named templates/edit.pt
. This means that when
a Page resource is the context, and a view name exists as the result
of traversal named edit_page
, this view will be used. We inform
Pyramid this view will use the templates/edit.pt
template file as
a renderer
.
The edit_page
function will be invoked when a user clicks the "Edit this
Page" button on the view form. It renders an edit form but it also acts as
the form post view callable for the form it renders. The context
of the
edit_page
view will always be a Page resource (never a Wiki resource).
If the view execution is not a result of a form submission (if the
expression 'form.submitted' in request.params
is False
), the view
simply renders the edit form, passing the page resource, and a save_url
which will be used as the action of the generated form.
If the view execution is a result of a form submission (if the expression
'form.submitted' in request.params
is True
), the view grabs the
body
element of the request parameter and sets it as the data
attribute of the page context. It then redirects to the default view of the
context (the page), which will always be the view_page
view.
Adding templates¶
The view_page
, add_page
and edit_page
views that we've added
reference a template. Each template is a Chameleon
ZPT template. These templates will live in the templates
directory of our tutorial package. Chameleon templates must have a .pt
extension to be recognized as such.
The view.pt
template¶
Rename tutorial/templates/mytemplate.pt
to tutorial/templates/view.pt
and edit the emphasized lines to look like the following:
1<!DOCTYPE html>
2<html lang="${request.locale_name}">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <meta name="description" content="pyramid web application">
8 <meta name="author" content="Pylons Project">
9 <link rel="shortcut icon" href="${request.static_url('tutorial:static/pyramid-16x16.png')}">
10
11 <title>${page.__name__} - Pyramid tutorial wiki (based on
12 TurboGears 20-Minute Wiki)</title>
13
14 <!-- Bootstrap core CSS -->
15 <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
16
17 <!-- Custom styles for this scaffold -->
18 <link href="${request.static_url('tutorial:static/theme.css')}" rel="stylesheet">
19
20 <!-- HTML5 shiv and Respond.js IE8 support of HTML5 elements and media queries -->
21 <!--[if lt IE 9]>
22 <script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js" integrity="sha384-0s5Pv64cNZJieYFkXYOTId2HMA2Lfb6q2nAcx2n0RTLUnCAoTTsS0nKEO27XyKcY" crossorigin="anonymous"></script>
23 <script src="//oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js" integrity="sha384-ZoaMbDF+4LeFxg6WdScQ9nnR1QC2MIRxA1O9KWEXQwns1G8UNyIEZIQidzb0T1fo" crossorigin="anonymous"></script>
24 <![endif]-->
25 </head>
26
27 <body>
28
29 <div class="starter-template">
30 <div class="container">
31 <div class="row">
32 <div class="col-md-2">
33 <img class="logo img-responsive" src="${request.static_url('tutorial:static/pyramid.png')}" alt="pyramid web framework">
34 </div>
35 <div class="col-md-10">
36 <div class="content">
37 <div tal:replace="structure content">
38 Page text goes here.
39 </div>
40 <p>
41 <a tal:attributes="href edit_url" href="">
42 Edit this page
43 </a>
44 </p>
45 <p>
46 Viewing <strong><span tal:replace="page.__name__">
47 Page Name Goes Here</span></strong>
48 </p>
49 <p>You can return to the
50 <a href="${request.application_url}">FrontPage</a>.
51 </p>
52 </div>
53 </div>
54 </div>
55 <div class="row">
56 <div class="copyright">
57 Copyright © Pylons Project
58 </div>
59 </div>
60 </div>
61 </div>
62
63
64 <!-- Bootstrap core JavaScript
65 ================================================== -->
66 <!-- Placed at the end of the document so the pages load faster -->
67 <script src="//code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
68 <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
69 </body>
70</html>
This template is used by view_page()
for displaying a single
wiki page. It includes:
A
div
element that is replaced with thecontent
value provided by the view (lines 37-39).content
contains HTML, so thestructure
keyword is used to prevent escaping it (i.e., changing ">" to ">", etc.)A link that points at the "edit" URL which invokes the
edit_page
view for the page being viewed (lines 41-43).
The edit.pt
template¶
Copy tutorial/templates/view.pt
to tutorial/templates/edit.pt
and edit the emphasized lines to look like the following:
1<!DOCTYPE html>
2<html lang="${request.locale_name}">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <meta name="description" content="pyramid web application">
8 <meta name="author" content="Pylons Project">
9 <link rel="shortcut icon" href="${request.static_url('tutorial:static/pyramid-16x16.png')}">
10
11 <title>${page.__name__} - Pyramid tutorial wiki (based on
12 TurboGears 20-Minute Wiki)</title>
13
14 <!-- Bootstrap core CSS -->
15 <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
16
17 <!-- Custom styles for this scaffold -->
18 <link href="${request.static_url('tutorial:static/theme.css')}" rel="stylesheet">
19
20 <!-- HTML5 shiv and Respond.js IE8 support of HTML5 elements and media queries -->
21 <!--[if lt IE 9]>
22 <script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js" integrity="sha384-0s5Pv64cNZJieYFkXYOTId2HMA2Lfb6q2nAcx2n0RTLUnCAoTTsS0nKEO27XyKcY" crossorigin="anonymous"></script>
23 <script src="//oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js" integrity="sha384-ZoaMbDF+4LeFxg6WdScQ9nnR1QC2MIRxA1O9KWEXQwns1G8UNyIEZIQidzb0T1fo" crossorigin="anonymous"></script>
24 <![endif]-->
25 </head>
26 <body>
27
28 <div class="starter-template">
29 <div class="container">
30 <div class="row">
31 <div class="col-md-2">
32 <img class="logo img-responsive" src="${request.static_url('tutorial:static/pyramid.png')}" alt="pyramid web framework">
33 </div>
34 <div class="col-md-10">
35 <div class="content">
36 <p>
37 Editing <strong><span tal:replace="page.__name__">
38 Page Name Goes Here</span></strong>
39 </p>
40 <p>You can return to the
41 <a href="${request.application_url}">FrontPage</a>.
42 </p>
43 <form action="${save_url}" method="post">
44 <div class="form-group">
45 <textarea class="form-control" name="body" tal:content="page.data" rows="10" cols="60"></textarea>
46 </div>
47 <div class="form-group">
48 <button type="submit" name="form.submitted" value="Save" class="btn btn-default">Save</button>
49 </div>
50 </form>
51 </div>
52 </div>
53 </div>
54 <div class="row">
55 <div class="copyright">
56 Copyright © Pylons Project
57 </div>
58 </div>
59 </div>
60 </div>
61
62
63 <!-- Bootstrap core JavaScript
64 ================================================== -->
65 <!-- Placed at the end of the document so the pages load faster -->
66 <script src="//code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
67 <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
68 </body>
69</html>
This template is used by add_page()
and edit_page()
for adding and
editing a wiki page. It displays a page containing a form that includes:
A 10-row by 60-column
textarea
field namedbody
that is filled with any existing page data when it is rendered (line 46).A submit button that has the name
form.submitted
(line 49).
The form POSTs back to the save_url
argument supplied by the view (line
44). The view will use the body
and form.submitted
values.
Note
Our templates use a request
object that none of our tutorial
views return in their dictionary. request
is one of several names that
are available "by default" in a template when a template renderer is used.
See System Values Used During Rendering for information about other names that
are available by default when a template is used as a renderer.
Static assets¶
Our templates name static assets, including CSS and images. We don't need
to create these files within our package's static
directory because they
were provided at the time we created the project.
As an example, the CSS file will be accessed via
http://localhost:6543/static/theme.css
by virtue of the call to the
add_static_view
directive we've made in the __init__.py
file. Any
number and type of static assets can be placed in this directory (or
subdirectories) and are just referred to by URL or by using the convenience
method static_url
, e.g.,
request.static_url('<package>:static/foo.css')
within templates.
Viewing the application in a browser¶
We can finally examine our application in a browser (See Start the application). Launch a browser and visit each of the following URLs, checking that the result is as expected:
http://localhost:6543/ invokes the
view_wiki
view. This always redirects to theview_page
view of theFrontPage
Page resource.http://localhost:6543/FrontPage/ invokes the
view_page
view of the front page resource. This is because it's the default view (a view without aname
) for Page resources.http://localhost:6543/FrontPage/edit_page invokes the edit view for the
FrontPage
Page resource.http://localhost:6543/add_page/SomePageName invokes the add view for a Page.
To generate an error, visit http://localhost:6543/add_page which will generate an
IndexError: tuple index out of range
error. You'll see an interactive traceback facility provided by pyramid_debugtoolbar.