1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
|
.. index::
single: Bicking, Ian
single: WebOb
.. _webob_chapter:
Request and Response Objects
============================
.. note:: This chapter is adapted from a portion of the :term:`WebOb`
documentation, originally written by Ian Bicking.
:app:`Pyramid` uses the :term:`WebOb` package as a basis for its
:term:`request` and :term:`response` object implementations. The
:term:`request` object that is passed to a :app:`Pyramid` :term:`view` is an
instance of the :class:`pyramid.request.Request` class, which is a subclass
of :class:`webob.Request`. The :term:`response` returned from a
:app:`Pyramid` :term:`view` :term:`renderer` is an instance of the
:mod:`pyramid.response.Response` class, which is a subclass of the
:class:`webob.Response` class. Users can also return an instance of
:class:`pyramid.response.Response` directly from a view as necessary.
WebOb is a project separate from :app:`Pyramid` with a separate set of
authors and a fully separate `set of documentation
<http://pythonpaste.org/webob/>`_. Pyramid adds some functionality to the
standard WebOb request, which is documented in the :ref:`request_module` API
documentation.
WebOb provides objects for HTTP requests and responses. Specifically it does
this by wrapping the `WSGI <http://wsgi.org>`_ request environment and
response status, header list, and app_iter (body) values.
WebOb request and response objects provide many conveniences for parsing WSGI
requests and forming WSGI responses. WebOb is a nice way to represent "raw"
WSGI requests and responses; however, we won't cover that use case in this
document, as users of :app:`Pyramid` don't typically need to use the
WSGI-related features of WebOb directly. The `reference documentation
<http://pythonpaste.org/webob/reference.html>`_ shows many examples of
creating requests and using response objects in this manner, however.
.. index::
single: request object
single: request attributes
Request
~~~~~~~
The request object is a wrapper around the `WSGI environ dictionary
<http://www.python.org/dev/peps/pep-0333/#environ-variables>`_. This
dictionary contains keys for each header, keys that describe the
request (including the path and query string), a file-like object for
the request body, and a variety of custom keys. You can always access
the environ with ``req.environ``.
Some of the most important/interesting attributes of a request
object:
``req.method``:
The request method, e.g., ``'GET'``, ``'POST'``
``req.GET``:
A :term:`multidict` with all the variables in the query
string.
``req.POST``:
A :term:`multidict` with all the variables in the request
body. This only has variables if the request was a ``POST`` and
it is a form submission.
``req.params``:
A :term:`multidict` with a combination of everything in
``req.GET`` and ``req.POST``.
``req.body``:
The contents of the body of the request. This contains the entire
request body as a string. This is useful when the request is a
``POST`` that is *not* a form submission, or a request like a
``PUT``. You can also get ``req.body_file`` for a file-like
object.
``req.json_body``
The JSON-decoded contents of the body of the request. See
:ref:`request_json_body`.
``req.cookies``:
A simple dictionary of all the cookies.
``req.headers``:
A dictionary of all the headers. This dictionary is case-insensitive.
``req.urlvars`` and ``req.urlargs``:
``req.urlvars`` are the keyword parameters associated with the
request URL. ``req.urlargs`` are the positional parameters.
These are set by products like `Routes
<http://routes.groovie.org/>`_ and `Selector
<http://lukearno.com/projects/selector/>`_.
Also, for standard HTTP request headers there are usually attributes,
for instance: ``req.accept_language``, ``req.content_length``,
``req.user_agent``, as an example. These properties expose the
*parsed* form of each header, for whatever parsing makes sense. For
instance, ``req.if_modified_since`` returns a `datetime
<http://python.org/doc/current/lib/datetime-datetime.html>`_ object
(or None if the header is was not provided).
.. note:: Full API documentation for the :app:`Pyramid` request
object is available in :ref:`request_module`.
.. index::
single: request attributes (special)
.. _special_request_attributes:
Special Attributes Added to the Request by :app:`Pyramid`
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
In addition to the standard :term:`WebOb` attributes, :app:`Pyramid` adds
special attributes to every request: ``context``, ``registry``, ``root``,
``subpath``, ``traversed``, ``view_name``, ``virtual_root``,
``virtual_root_path``, ``session``, and ``tmpl_context``, ``matchdict``, and
``matched_route``. These attributes are documented further within the
:class:`pyramid.request.Request` API documentation.
.. index::
single: request URLs
URLs
++++
In addition to these attributes, there are several ways to get the URL
of the request. I'll show various values for an example URL
``http://localhost/app/blog?id=10``, where the application is mounted at
``http://localhost/app``.
``req.url``:
The full request URL, with query string, e.g.,
``http://localhost/app/blog?id=10``
``req.host``:
The host information in the URL, e.g.,
``localhost``
``req.host_url``:
The URL with the host, e.g., ``http://localhost``
``req.application_url``:
The URL of the application (just the SCRIPT_NAME portion of the
path, not PATH_INFO). E.g., ``http://localhost/app``
``req.path_url``:
The URL of the application including the PATH_INFO. e.g.,
``http://localhost/app/blog``
``req.path``:
The URL including PATH_INFO without the host or scheme. e.g.,
``/app/blog``
``req.path_qs``:
The URL including PATH_INFO and the query string. e.g,
``/app/blog?id=10``
``req.query_string``:
The query string in the URL, e.g.,
``id=10``
``req.relative_url(url, to_application=False)``:
Gives a URL, relative to the current URL. If ``to_application``
is True, then resolves it relative to ``req.application_url``.
.. index::
single: request methods
Methods
+++++++
There are methods of request objects documented in
:class:`pyramid.request.Request` but you'll find that you won't use very many
of them. Here are a couple that might be useful:
``Request.blank(base_url)``:
Creates a new request with blank information, based at the given
URL. This can be useful for subrequests and artificial requests.
You can also use ``req.copy()`` to copy an existing request, or
for subrequests ``req.copy_get()`` which copies the request but
always turns it into a GET (which is safer to share for
subrequests).
``req.get_response(wsgi_application)``:
This method calls the given WSGI application with this request, and
returns a :class:`pyramid.response.Response` object. You can also use
this for subrequests, or testing.
.. index::
single: request (and unicode)
single: unicode (and the request)
Unicode
+++++++
Many of the properties in the request object will return unicode
values if the request encoding/charset is provided. The client *can*
indicate the charset with something like ``Content-Type:
application/x-www-form-urlencoded; charset=utf8``, but browsers seldom
set this. You can set the charset with ``req.charset = 'utf8'``, or
during instantiation with ``Request(environ, charset='utf8')``. If
you subclass ``Request`` you can also set ``charset`` as a class-level
attribute.
If it is set, then ``req.POST``, ``req.GET``, ``req.params``, and
``req.cookies`` will contain unicode strings. Each has a
corresponding ``req.str_*`` (e.g., ``req.str_POST``) that is always
a ``str``, and never unicode.
.. index::
single: multidict (WebOb)
.. _multidict_narr:
Multidict
+++++++++
Several attributes of a WebOb request are "multidict"; structures (such as
``request.GET``, ``request.POST``, and ``request.params``). A multidict is a
dictionary where a key can have multiple values. The quintessential example
is a query string like ``?pref=red&pref=blue``; the ``pref`` variable has two
values: ``red`` and ``blue``.
In a multidict, when you do ``request.GET['pref']`` you'll get back
only ``'blue'`` (the last value of ``pref``). Sometimes returning a
string, and sometimes returning a list, is the cause of frequent
exceptions. If you want *all* the values back, use
``request.GET.getall('pref')``. If you want to be sure there is *one
and only one* value, use ``request.GET.getone('pref')``, which will
raise an exception if there is zero or more than one value for
``pref``.
When you use operations like ``request.GET.items()`` you'll get back
something like ``[('pref', 'red'), ('pref', 'blue')]``. All the
key/value pairs will show up. Similarly ``request.GET.keys()``
returns ``['pref', 'pref']``. Multidict is a view on a list of
tuples; all the keys are ordered, and all the values are ordered.
API documentation for a multidict exists as
:class:`pyramid.interfaces.IMultiDict`.
.. _request_json_body:
Dealing With A JSON-Encoded Request Body
++++++++++++++++++++++++++++++++++++++++
.. note:: this feature is new as of Pyramid 1.1.
:attr:`pyramid.request.Request.json_body` is a property that returns a
:term:`JSON` -decoded representation of the request body. If the request
does not have a body, or the body is not a properly JSON-encoded value, an
exception will be raised when this attribute is accessed.
This attribute is useful when you invoke a Pyramid view callable via
e.g. jQuery's ``$.post`` or ``$.ajax`` functions, which have the potential to
send a JSON-encoded body or parameters.
Using ``request.json_body`` is equivalent to:
.. code-block:: python
from json import loads
loads(request.body, encoding=request.charset)
Here's how to construct an AJAX request in Javascript using :term:`jQuery`
that allows you to use the ``request.json_body`` attribute when the request
is sent to a Pyramid application:
.. code-block:: javascript
jQuery.ajax({type:'POST',
url: 'http://localhost:6543/', // the pyramid server
data: JSON.stringify({'a':1}),
contentType: 'application/json; charset=utf-8',
dataType: 'json'});
When such a request reaches a view in your application, the
``request.json_body`` attribute will be available in the view callable body.
.. code-block:: javascript
@view_config(renderer='json')
def aview(request):
print request.json_body
return {'result':'OK'}
For the above view, printed to the console will be:
.. code-block:: python
{u'a': 1}
More Details
++++++++++++
More detail about the request object API is available in:
- The :class:`pyramid.request.Request` API documentation.
- The `WebOb documentation <http://pythonpaste.org/webob>`_. All
methods and attributes of a ``webob.Request`` documented within the
WebOb documentation will work with request objects created by
:app:`Pyramid`.
.. index::
single: response object
Response
~~~~~~~~
The :app:`Pyramid` response object can be imported as
:class:`pyramid.response.Response`. This class is a subclass of the
``webob.Response`` class. The subclass does not add or change any
functionality, so the WebOb Response documentation will be completely
relevant for this class as well.
A response object has three fundamental parts:
``response.status``:
The response code plus reason message, like ``'200 OK'``. To set
the code without a message, use ``status_int``, i.e.:
``response.status_int = 200``.
``response.headerlist``:
A list of all the headers, like ``[('Content-Type',
'text/html')]``. There's a case-insensitive :term:`multidict`
in ``response.headers`` that also allows you to access
these same headers.
``response.app_iter``:
An iterable (such as a list or generator) that will produce the
content of the response. This is also accessible as
``response.body`` (a string), ``response.unicode_body`` (a
unicode object, informed by ``response.charset``), and
``response.body_file`` (a file-like object; writing to it appends
to ``app_iter``).
Everything else in the object typically derives from this underlying state.
Here are some highlights:
``response.content_type``
The content type *not* including the ``charset`` parameter.
Typical use: ``response.content_type = 'text/html'``.
``response.charset``:
The ``charset`` parameter of the content-type, it also informs
encoding in ``response.unicode_body``.
``response.content_type_params`` is a dictionary of all the
parameters.
``response.set_cookie(key, value, max_age=None, path='/', ...)``:
Set a cookie. The keyword arguments control the various cookie
parameters. The ``max_age`` argument is the length for the cookie
to live in seconds (you may also use a timedelta object). The
``Expires`` key will also be set based on the value of
``max_age``.
``response.delete_cookie(key, path='/', domain=None)``:
Delete a cookie from the client. This sets ``max_age`` to 0 and
the cookie value to ``''``.
``response.cache_expires(seconds=0)``:
This makes this response cacheable for the given number of seconds,
or if ``seconds`` is 0 then the response is uncacheable (this also
sets the ``Expires`` header).
``response(environ, start_response)``:
The response object is a WSGI application. As an application, it
acts according to how you create it. It *can* do conditional
responses if you pass ``conditional_response=True`` when
instantiating (or set that attribute later). It can also do HEAD
and Range requests.
.. index::
single: response headers
Headers
+++++++
Like the request, most HTTP response headers are available as
properties. These are parsed, so you can do things like
``response.last_modified = os.path.getmtime(filename)``.
The details are available in the `extracted Response documentation
<http://pythonpaste.org/webob/class-webob.Response.html>`_.
.. index::
single: response (creating)
Instantiating the Response
++++++++++++++++++++++++++
Of course most of the time you just want to *make* a response.
Generally any attribute of the response can be passed in as a keyword
argument to the class; e.g.:
.. code-block:: python
:linenos:
from pyramid.response import Response
response = Response(body='hello world!', content_type='text/plain')
The status defaults to ``'200 OK'``. The content_type does not default to
anything, though if you subclass :class:`pyramid.response.Response` and set
``default_content_type`` you can override this behavior.
.. index::
single: response exceptions
Exception Responses
+++++++++++++++++++
To facilitate error responses like ``404 Not Found``, the module
:mod:`pyramid.httpexceptions` contains classes for each kind of error
response. These include boring, but appropriate error bodies. The
exceptions exposed by this module, when used under :app:`Pyramid`, should be
imported from the :mod:`pyramid.httpexceptions` module. This import location
contains subclasses and replacements that mirror those in the ``webob.exc``
module.
Each class is named ``pyramid.httpexceptions.HTTP*``, where ``*`` is the
reason for the error. For instance,
:class:`pyramid.httpexceptions.HTTPNotFound` subclasses
:class:`pyramid.Response`, so you can manipulate the instances in the same
way. A typical example is:
.. ignore-next-block
.. code-block:: python
:linenos:
from pyramid.httpexceptions import HTTPNotFound
from pyramid.httpexceptions import HTTPMovedPermanently
response = HTTPNotFound('There is no such resource')
# or:
response = HTTPMovedPermanently(location=new_url)
More Details
++++++++++++
More details about the response object API are available in the
:mod:`pyramid.response` documentation. More details about exception
responses are in the :mod:`pyramid.httpexceptions` API documentation. The
`WebOb documentation <http://pythonpaste.org/webob>`_ is also useful.
|