Tagged Questions

6
votes
3answers
7k views

How to stop BaseHTTPServer.serve_forever() in a BaseHTTPRequestHandler subclass?

The python documentation states that BaseHTTPServer.HTTPServer is a subclass of SocketServer.TCPServer, which dows support a shutdown method - but it is missing in HTTPServer. I am running my ...
3
votes
4answers
2k views

Parse http GET and POST parameters from BaseHTTPHandler?

BaseHTTPHandler from the BaseHTTPServer module doesn't seem to provide any convenient way to access http request parameters. What is the best way to parse the GET parameters from the path, and the ...
2
votes
1answer
677 views

what is the difference between BaseHTTPServer and SimpleHTTPServer? when and where to use it?

What is the difference between BaseHTTPServer and SimpleHTTPServer? When and where should i use these?
1
vote
1answer
567 views

How to extract HTTP message body in BaseHTTPRequestHandler.do_POST()?

In the do_POST() method of BaseHTTPRequestHandler I can access the headers of the POST request simply via the property self.headers. But I can't find a similar property for accessing the body of the ...
0
votes
1answer
192 views

Proper way to process html form in BaseHTTPHandler

I know that I am supposed to use cgi.FieldStorage for that. But what do I initialize it with? def do_GET(self): form = cgi.FieldStorage(WHAT SHOULD BE HERE?!) thanks! I did search, but didn't ...
0
votes
1answer
758 views

Parsing Python HTML POST data from BaseHTTPServer

I'm sending a couple of files from an HTML form to my server which is based on BaseHTTPServer. Within my do_POST I'm getting a string from rfile.read(length) which looks like some sort of multipart ...