Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
402 views

TCP connection reset occurs when WSGI app responds before consuming environ['wsgi.input']

For our webservice, I wrote some logic to prevent multipart/form-data POSTs larger than, say, 4mb. It boils down to the following (I've stripped away all WebOb usage and just reduced it to plain ...
2
votes
1answer
393 views

why use wsgiref simple_server?

I have a simple webapp to build, and I am just beginning to mess around with mod_wsgi. In various tutorials, the first hello world app looks something like the following: def ...
2
votes
2answers
174 views

In google app engine, how to iterate through form fields (python, wsgiref.handlers)

Using python and wsgiref.handlers, I can get a single variable from a form with self.handler.request.get(var_name), but how do I iterate through all form variables, be they from GET and POST? Is it ...
2
votes
5answers
733 views

using wsgiref.simple_server in unittests

I has some function like this one: URL = 'http://localhost:8080' def func(): response = urlopen(URL) return process(response) And i want to test it with unittest. I do something like ...
1
vote
2answers
126 views

AppEngine confusion - CGI, WSGI-compliant?

I'm confused. If AppEngine is supposed to allow running of WSGI-employing apps .. # somewhere in a webapp.RequestHandler env = dict(os.environ.items()) for key, value in env.items(): ...
1
vote
1answer
635 views

How do I encode WSGI output in UTF-8?

I want to send an HTML page to the web browser encoded as UTF-8. However the following example fails: from wsgiref.simple_server import make_server def app(environ, start_response): output = ...
0
votes
1answer
76 views

Why does wsgiref.simple_server report content-type of request as 'text/plain' while none was sent?

Output from client.py is text/plain although no content-type header was sent to the server. Why? # ---------------------------------------------- server.py from wsgiref.simple_server import ...
0
votes
1answer
164 views

Start simple web server and launch browser simultaneously in Python

I want to start a simple web server locally, then launch a browser with an url just served. This is something that I'd like to write, from wsgiref.simple_server import make_server import webbrowser ...
0
votes
1answer
766 views

How to catch POST using WSGIREF

I am trying to catch POST data from a simple form. This is the first time I am playing around with WSGIREF and I can't seem to find the correct way to do this. This is the form: <form ...
0
votes
3answers
345 views

Python 3.0 `wsgiref` server not functioning

I can't seem to get the wsgiref module to work at all under Python 3.0. It works fine under 2.5 for me, however. Even when I try the example in the docs, it fails. It fails so hard that even if I have ...