vote up 1 vote down star

To help further my understanding of WSGI I'm looking for a diagram which explains the flow of an application, from webserver (eg. apache) through a number of middlewares to "code" (as in, the print "hello world" bit).

I've read various articles regarding WSGI from wsgi.org, but it's still not "clicking" for me and as for diagrams Google isn't bringing anything useful back except this for django which, while interesting, is expecting the user to understand how middleware links-up and such.

Since "a picture is worth a thousand words", are there any diagrams out there which get a bit lower/more simplistic than this?

flag

74% accept rate
Have you looked at python.org/dev/peps/pep-0333? Is that simplistic enough? Have you looked at docs.python.org/library/wsgiref.html? Is that simplistic enough? Have you looked at werkzeug.pocoo.org? Is that simplistic enough? – S.Lott Aug 20 at 2:42
@S.Lott: Sorry, where did I say that I was looking for long descriptions of WSGI? – Phillip Oldham Aug 20 at 5:37
@Phillip Oldham: Are you saying that the sample applications in the WSGI descriptions aren't described well-enough? Which of the three sources is closer to what you're looking for? Why are you focused on a diagram when you have sample code? What's wrong with the sample code? – S.Lott Aug 20 at 10:01
@S.Lott: sometimes sample code isn't enough to illustrate the underlying concept. That's why whiteboards, UML, info-graphics etc. are so useful. A couple of boxes and arrows can often trump a well thought-out and written description. – Phillip Oldham Aug 20 at 10:53

2 Answers

vote up 4 vote down check

I like the diagram from Ian Bicking's WSGI - A Series of Tubes.

link|flag
Perfect! All it takes is some pointy arrows, some colored boxes, and "understanding" slots into place. Thanks! – Phillip Oldham Aug 20 at 7:23
And the crayon style is refreshing :) – lutz Aug 20 at 7:29
HAH, that presentation is pretty good. I had no idea it existed. FWIW, the author of the presentation created Paste which I consider to one of the best resources for learning WSGI. – Tom Willis Aug 24 at 12:07
That's great lutz! – thethinman Nov 11 at 21:35
vote up 2 vote down

I don't know if I can provide the answer you are looking for but the diagram you linked to shows more than just wsgi. The wsgi layer ends at the second line on the diagram. After that it's application specific.

WSGI is more an interface definition or contract that boils down to somehow you provide a function which takes a dictionary (environ) which represents the contents of the current request. and a function to call when you are ready to start the response(start_response).

The start_response method that you call needs a HTTP status code('200 OK') and a list of HTTP headers([('content-type', 'text/html')]).

def say_hello(envron={},start_response):
    start_response('200 OK', [('content-type', 'text/html')])
    return ["Hello from WSGI"]

Linking up your web server to your wsgi app is specific to your webserver I think and information on how the webserver arrives at the environ dictionary and a callback for your code to call is the webserver magic that you probably don't need to be concerned about. And as long as you obey the protocol, the webserver doesn't need to care how you arrived at your list of output that constitutes your response from your application.

The Paste documentation helped me a LOT. You may find it useful. BTW, Paste is a bunch of useful things that help you utilize WSGI.And the docs are very good for understanding how to use WSGI and by extension Paste.

I know you asked for a diagram sorry. :(

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.