Steve Piercy
2017-10-22 4567204570eff25408278fd01919c1b048b9f7f1
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)