summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/hello_world/app.py
blob: ff0b950d30c4252b40b77f91d5214e9cc31f04a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from waitress import serve
from pyramid.config import Configurator
from pyramid.response import Response


def hello_world(request):
    print('Incoming request')
    return Response('<body><h1>Hello World!</h1></body>')


if __name__ == '__main__':
    with Configurator() as config:
        config.add_route('hello', '/')
        config.add_view(hello_world, route_name='hello')
        app = config.make_wsgi_app()
    serve(app, host='0.0.0.0', port=6543)