Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
2k views

Python - BaseHTTPServer.HTTPServer Concurrency & Threading

Is there a way to make BaseHTTPServer.HTTPServer be multi-threaded like SocketServer.ThreadingTCPServer?
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 ...
4
votes
4answers
95 views

How would you mock a web app in Python (for testing a Django project)

My app in Django scraps and imports data from another application's HTML. I tested each parsing function and would like to test the crawler that will go through the other application, too. After ...
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 ...
3
votes
6answers
4k views

Daemonizing python's BaseHTTPServer

I am working on a daemon where I need to embed a HTTP server. I am attempting to do it with BaseHTTPServer, which when I run it in the foreground, it works fine, but when I try and fork the daemon ...
2
votes
1answer
819 views

Python BaseHTTPServer, how do I catch/trap “broken pipe” errors?

I build a short url translator engine in Python, and I'm seeing a TON of "broken pipe" errors, and I'm curious how to trap it best when using the BaseHTTPServer classes. This isn't the entire code, ...
2
votes
1answer
424 views

How to silent/quiet HTTPServer and BasicHTTPRequestHandler's stderr output?

I am writing a simple http server as part of my project. Below is a skeleton of my script: from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler class MyHanlder(BaseHTTPRequestHandler): ...
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
74 views

How do i get variables/functions of another class in BaseHTTP class “WebServer”

renegade.py (main before) import socket, re from prerequisites import * import datetime,random,sys,time,os,pickle,urllib from threading import * class Renegade(): def __init__(self, settings, ...
1
vote
1answer
573 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 ...
1
vote
1answer
186 views

Getting Host field from HTTP request in BaseHTTPRequestHandler

I'm writing a script using BaseHTTPRequestHandler class. And in do_GET(self) method I need to get the content of the Host field from the HTTP request. I can do it by regexping the str(self.headers) ...
1
vote
2answers
386 views

How do I serve image Content-types with Python BaseHTTPServerRequestHandler do_GET method?

I'm using BaseHTTPServer to serve web content. I can serve Content-types 'text/html' or 'text/css' or even 'text/js' and it renders on the browser side. But when I try to ...
1
vote
2answers
852 views

Stuck with Python HTTP Server with Basic Authentication using BaseHTTP

I am stuck trying to get a python based webserver to work. I want to do Basic Authentication (sending a 401 header) and authenticating against a list of users. I have no trouble sending the 401 ...
1
vote
1answer
271 views

Problems with my BaseHTTPServer

I am trying to create my own functions in the subclass of BaseHTTPRequestHandler as such class Weblog(BaseHTTPServer.BaseHTTPRequestHandler): def do_HEAD(self): self.send_response(200) ...
0
votes
1answer
139 views

How can I access members of the HTTPServer from a BaseHTTPRequestHandler?

I'm putting together a little application that involved both a GUI, HTTP and TCP servers. The GUI controls the responses returned from the HTTP and TCP servers to the clients. I'm using the ...
0
votes
1answer
83 views

python basehttpserver: can i modify the 404 response?

Is it possible to modify the 404 response page sent from pythons basehttpserver library?
0
votes
2answers
338 views

How to implement Timeout in BaseHTTPServer.BaseHTTPRequestHandler Python

In my python script, I am trying to run a web server: server = BaseHTTPServer.HTTPServer(('127.0.0.1',8080), RequestHandler) I have a request handler class: class ...
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
760 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 ...