Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
# /test{.format} no longer seems to work...
config.add_route('test', '/test.{ext}', view='ms.views.test')

views.py:

from pyramid.response import Response
from pyramid.renderers import render

import json

def test(request):
    extension = request.matchdict['ext']
    variables = {'name' : 'blah', 'asd' : 'sdf'}

    if extension == 'html':
        output = render('mypackage:templates/blah.pt', variables, request=request)

    if extension == 'json':
        output = json.dumps(variables)

    return Response(output)

Is there an easier way to do this? With Pylons, it was a simple:

def test(self, format='html'):
    c.variables = {'a' : '1', 'b' : '2'}

    if format == 'json':
        return json.dumps(c.variables)

    return render('/templates/blah.html')

I suspect I'm approaching this the wrong way...?

share|improve this question
What's your complaint? Are you complaining that pyramid has different API's from pylons? If you don't like the pyramid API's, why not go back to Pylons? – S.Lott Jan 8 '11 at 12:44
Does not Pyramid use middleware? Why can't you render JSON based on what the user requests? Doing inside the view directly, is in my book, a faulty solution. If possible, take advantage over the middleware. – Anders Jan 8 '11 at 13:55

3 Answers

I think, the better way is to add the same view twice with difference renderers. Suppose we have the following view:

def my_view(request):
    return {"message": "Hello, world!"}

Now in our configuration we can add the same view twice:

from pyramid.config import Configurator
config = Configurator()
config.add_route('test', '/test', my_view, renderer="templates/my_template.mako")
config.add_route('test', '/test', my_view, renderer="json", xhr=True)

What we have now:

  1. View my_view will render template "templates/my_template.mako" with returned dict provided as context if we will point our browser to url /test.
  2. If we will make XHR request with my_view will be called again, but now returned dict will be encoded as JSON and transmitted back to caller (please read docs about checking if request was done via XHR).

The same idea we can use for defining different routes but with the same view attached to them:

from pyramid.config import Configurator
config = Configurator()
config.add_route('test', '/test', my_view, renderer="templates/my_template.mako")
config.add_route('test_json', '/test.json', my_view, renderer="json")

Now /test will trigger template rendering, but /test.json will return just JSON encoded string.

You can go further and make dispatching to the right renderer via accept argument of add_router method:

from pyramid.config import Configurator
config = Configurator()
config.add_route('test', '/test', my_view, renderer="templates/my_template.mako")
config.add_route('test', '/test', my_view, renderer="json", accept="application/json")

If request comes with header Accept set to application/json value JSON will be returned, otherwise you got rendered template.

Note, this will work only if you have predefined set of data formats in which you want to encode responses from your views, but it's the usual case. In case you need dynamical dispatching you can decorate your views with decorate argument of add_route which will choose the right renderer with your rules.

share|improve this answer
2  
+1 I think this best reflects the "pyramid way" of doing things. It's flexible, decouples the views from the renderers making the views easier to unit test because instead of parsing an html doc you can just look for values in a dictionary. – Tom Willis Jan 8 '11 at 19:28
This does seem like a neat way of doing it. How would I go about applying this method to my Handlers methods? I found, in the documentation, that you can decorate functions with view_config which will allow you to set the renderer but I couldn't see an equivalent for URL Dispatch. – dave Jan 9 '11 at 3:19
Doesn't add_handler works like this? I've never worked with handlers, but documentation states, that "Any extra keyword arguments are passed along to add_route." – andreypopp Jan 9 '11 at 7:57
1  
apparently the wsiwyg editor is messing with me here, i can't type a return character without submitting the comment... but see plope.com/static/pyr_so.txt – Chris McDonough Jan 11 '11 at 1:15
What about if you are using traversal ? – sebpiq Mar 9 '12 at 11:41
show 3 more comments

Is this what you're looking for? Pylons and Pyramid have different API's. So they will be different. You can make them a little more similar, but you can't make them identical.

def test(request):
    extension = request.matchdict['ext']
    variables = {'name' : 'blah', 'asd' : 'sdf'}

    if extension == 'json':
        return Response( json.dumps(variables) )

    return Response( render('mypackage:templates/blah.pt', variables, request=request) )
share|improve this answer
+1 that's the one to one translation to the OP's example. – Tom Willis Jan 8 '11 at 19:25
@Tom Willis: which can't be the real question. Can it? – S.Lott Jan 9 '11 at 13:57

I came across this article in addition to this question. It helped me with json renderer, accepting different content types and other useful info http://zhuoqiang.me/a/restful-pyramid. I include it here to compliment earlier answers for future readers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.