Skip to content

Instantly share code, notes, and snippets.

@hanula
Created April 23, 2013 20:55
Show Gist options
  • Save hanula/5447311 to your computer and use it in GitHub Desktop.
Save hanula/5447311 to your computer and use it in GitHub Desktop.
Falcon's bench suite for Pyramid
def create_pyramid(body, headers):
from pyramid.response import Response
from pyramid.config import Configurator
def hello(request):
return Response(body, headers=headers, content_type='text/plain')
config = Configurator()
config.add_route('hello', '/hello/:account_id/test')
config.add_view(hello, route_name='hello')
return config.make_wsgi_app()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment