Emitting headers from a tiny Python web-framework - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T21:28:29Z http://stackoverflow.com/feeds/question/347497 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/347497/emitting-headers-from-a-tiny-python-web-framework 3 Emitting headers from a tiny Python web-framework dbr http://stackoverflow.com/users/745 2008-12-07T11:41:34Z 2008-12-31T16:00:06Z <p>I am writing a web-framework for Python, of which the goal is to be as "small" as possible (currently under 100 lines of code).. You can see the current code <a href="http://github.com/dbr/pyerweb/tree/master" rel="nofollow">on github</a></p> <p>Basically it's written to be as simple to use as possible. An example "Hello World" like site:</p> <pre><code>from pyerweb import GET, runner @GET("/") def index(): return "&lt;strong&gt;This&lt;/strong&gt; would be the output HTML for the URL / " @GET("/view/([0-9]+?)$") def view_something(id): return "Viewing id %s" % (id) # URL /view/123 would output "Viewing id 123" runner(url = "/", # url would be from a web server, in actual use output_helper = "html_tidy" # run returned HTML though "HTML tidy" </code></pre> <p>Basically you have a function that returns HTML, and the GET decorator maps this to a URL.</p> <p>When <code>runner()</code> is called, each decorated function is checked, if the URL regex matches the request URL, the function is run, and the output is sent to the browser.</p> <p>Now, the problem - outputting headers. Currently for development I've just put a line before the <code>runner()</code> call which does <code>print Content-type:text/html\n</code> - this is obviously a bit limiting..</p> <p>My first ideas was to have the functions return a dict, something like..</p> <pre><code>@GET("/") def index(): return { "html": "&lt;html&gt;&lt;body&gt;...&lt;/body&gt;&lt;/html&gt;", "headers": {"Location":"http://google.com"} } </code></pre> <p>I really don't like this - having to return a dict with a specifically named key isn't nearly as nice as just returning a string..</p> <p>I could check if the returned data is a dict, if so use <code>returned_data['html']</code> as the output, if it's a string, there is no custom headers to be sent... but this means to go from no headers (which would be the case a huge majority of the time) to headers, you'd have to change the return function from <code>return my_html</code> to <code>return {'html':my_html}</code> which isn't very elegant either..</p> <p>After writing this, I discovered "Sinatra" - a similar-in-use Ruby library, and looked at how it dealt with headers:</p> <pre><code>get "/" do content_type 'text/css', :charset =&gt; 'utf-8' end </code></pre> <p>This seems like it could be nice enough in Python:</p> <pre><code>@GET("/") def index(): header("location", "http://google.com") </code></pre> <p>To implement this, I was considering changing how the functions are executed - instead of simply using the return value, I would change <code>sys.stdout</code> to a StringIO, so you could do..</p> <pre><code>def index(): print "&lt;html&gt;" print "&lt;head&gt;&lt;title&gt;Something&lt;/title&gt;&lt;/head&gt;" print "&lt;body&gt;...&lt;/body&gt;" print "&lt;/html&gt; </code></pre> <p>..without having to worry about concatenating a bunch of strings together. The upshot of this is I could have a separate stream for headers, so the above <code>header()</code> function would write to this.. Something like:</p> <pre><code>def header(name, value): pyerweb.header_stream.write("%s: %s" % (name, value)) </code></pre> <p>Basically, the question is, how would you output headers from this web-framework (mostly in terms of <em>use</em>, but to a lesser extent implementation)?</p> http://stackoverflow.com/questions/347497/emitting-headers-from-a-tiny-python-web-framework/347509#347509 1 Answer by gimel for Emitting headers from a tiny Python web-framework gimel http://stackoverflow.com/users/6491 2008-12-07T12:04:44Z 2008-12-07T12:04:44Z <p>You should reconsider the notion of returning <a href="http://en.wikipedia.org/wiki/Html" rel="nofollow">HTML</a> - headers are part of <a href="http://en.wikipedia.org/wiki/Http" rel="nofollow">HTTP</a>. If you build your framework around an HTTP stream, the headers are simply lines that precede the HTML payload.</p> <p>A headers example from the above link:</p> <pre><code>HTTP/1.1 200 OK Date: Mon, 23 May 2005 22:38:34 GMT Server: Apache/1.3.3.7 (Unix) (Red-Hat/Linux) Last-Modified: Wed, 08 Jan 2003 23:11:55 GMT Etag: "3f80f-1b6-3e1cb03b" Accept-Ranges: bytes Content-Length: 438 Connection: close Content-Type: text/html; charset=UTF-8 </code></pre> <p>For a Python example, see the implementaion of <a href="http://docs.python.org/library/basehttpserver.html#BaseHTTPServer.BaseHTTPRequestHandler.send_header" rel="nofollow"><code>BaseHTTPRequestHandler.send_header(keyword, value</code>)</a>.</p> http://stackoverflow.com/questions/347497/emitting-headers-from-a-tiny-python-web-framework/347545#347545 3 Answer by Javier for Emitting headers from a tiny Python web-framework Javier http://stackoverflow.com/users/11649 2008-12-07T12:53:39Z 2008-12-07T12:53:39Z <p>you could use that idea of returning a dict or a string, but add a new decorator, so the 'evolution' for a user would be:</p> <p>simple html:</p> <pre><code>@GET("/") def index(): return "&lt;html&gt;&lt;body&gt;...&lt;/body&gt;&lt;/html&gt;" </code></pre> <p>with constant headers (one @HEADER for each one, or a dict with all of them):</p> <pre><code>@GET("/") @HEADER("Location","http://google.com") def index(): return "&lt;html&gt;&lt;body&gt;...&lt;/body&gt;&lt;/html&gt;" </code></pre> <p>with complex, maybe calculated headers:</p> <pre><code>@GET("/") def index(): return { "html": "&lt;html&gt;&lt;body&gt;...&lt;/body&gt;&lt;/html&gt;", "headers": {"Location":"http://google.com"} } </code></pre> <p>the @HEADER() decorator would simply change the returned value, so the 'framework' code would stay simple.</p> http://stackoverflow.com/questions/347497/emitting-headers-from-a-tiny-python-web-framework/347588#347588 5 Answer by S.Lott for Emitting headers from a tiny Python web-framework S.Lott http://stackoverflow.com/users/10661 2008-12-07T13:43:28Z 2008-12-31T16:00:06Z <p>Look at <a href="http://www.python.org/dev/peps/pep-0333/" rel="nofollow">PEP 333</a> for an excellent design pattern for a very lightweight web server. If your server has this exact API, you can reuse it in a lot of context with a lot of other products.</p> <p>PEP 333 (WSGI) suggests that you don't directly return the page, but you provide the HTML page to a "start_response" callable object, which wraps your HTML in the proper HTTP response, with the proper headers.</p>