Python wsgiref.simpleserver Functions

EditRocket provides the following information on wsgiref.simpleserver functions in the Python source code builder.

demo_app(environ, start_response) - This function is a small but complete WSGI application that returns a text page containing the message ``Hello world!'' and a list of the key/value pairs provided in the environ parameter.

make_server(host, port, app[, server_class=WSGIServer [,handler_class=WSGIRequestHandler]]) - Create a new WSGI server listening on host and port, accepting connections for app.