Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

BaseHTTPServer - getting POST parameters

27 views
Skip to first unread message

Vlad Dogaru

unread,
Nov 14, 2006, 4:00:35 PM11/14/06
to
Hello,

After experimenting for a while, I am still not able to find where the
POST data is in the BaseHTTPRequestHandler class. I am trying to write
a very simple HTTP server for a project of mine and I need to get the
POST data. Certainly I am missing something, as it is a comon task.

Thanks in advance,
Vlad

Paul Boddie

unread,
Nov 14, 2006, 4:36:41 PM11/14/06
to

The way I've done this previously is to access the rfile attribute on
instances of the BaseHTTPRequestHandler class, since this provides the
body of each request (where POST data comes from) as a stream. Data
read from the stream can be processed by things like cgi.parse or
cgi.FieldStorage, although you may need to provide other data to those
things in order to simulate the CGI environment properly.

An alternative is to use WebStack's BaseHTTPRequestHandler support:

http://www.python.org/pypi/WebStack

Paul

Fredrik Lundh

unread,
Nov 14, 2006, 4:43:04 PM11/14/06
to pytho...@python.org
Vlad Dogaru wrote:

it's nowhere: you're supposed to read it from the socket via the "rfile"
attribute.

</F>

0 new messages