Steve Piercy
2017-10-22 594874099a39fb991d7eedc0d6203dc370c7470a
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__':
    config = Configurator()
    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)