summaryrefslogtreecommitdiff
path: root/docs/narr/helloworld.py
blob: 92e16efbb32dcdffe8ec84bf729c53df4e4c7582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from paste.httpserver import serve
from pyramid.configuration import Configurator
from pyramid.response import Response

def hello_world(request):
   return Response('Hello %(name)s!' % request.matchdict)

if __name__ == '__main__':
   config = Configurator()
   config.add_route('hello', '/hello/{name}')
   config.add_view(hello_world, route_name='hello')
   app = config.make_wsgi_app()
   serve(app, host='0.0.0.0')