This is a simple python wsgi server that prints out Hello guys!!! on 0.0.0.0:8080.
from wsgiref.simple_server import make_server
content = 'Hello guys!!!'
def application(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/plain')])
return [content]
server = make_server('0.0.0.0', 8080, application)
server.serve_forever()
Several questions arise when looking at this code:
How can the
make_serverfunction work with just the function nameapplication? I don't see how this does anything else then return the"<function application at 0x7f71686286e0>"string (application.__repr__() methodof function object).Why does the application function definition define
environas an argument when it isn't used inside this function and isn't even set in anapplicationfunction call later on?From what I understand the
start_responseargument in the function definition is used here as a sort of identifier that this will be the name of the function that sets other properties later needed in themake_serverfunction call. Where is that functionality defined in the standard library? (I have checked the source of the relevant modules but I don't understand where this it is done exactly)
Observations: Changing the argument environ in the function definition does not change anything in the behaviour of the code, the start_response argument however has to have the same name as start_response in the body of the application function.
I know os.environ is a dictionary but I can't find where it is called in the python standard library. If the environ argument is necessary and the only viable first argument, I don't understand why they would require you to explicitly name a first argument(environ) every time, it gives you the illusion that using a different argument affects its behaviour. I am aware of the "better explicit then implicit"-python policy but here I think it is useless and confusing.
Edit
Because of Ned's answer I now understand by looking at the source that make_server('0.0.0.0', 8080, application) creates an instance of WSGIServer such as wsgiref.simple_server.WSGIServer((host, port), handler_class)). Looking deeper I found that the initialisation method is inherited from BaseServer . BaseServer instances have server_address and RequestHandlerClass as instance variables among others.
The function object application is stored in the application class variable of WSGIServer.
But I still can't find where else this application class variable is used somewhere in the python source. (I 've searched through all modules that contain class definitions of parent classes of WSGIServer) Does anybody know where it is used? Finding that could potentially answer all my questions.