The basehttpserver tag has no wiki summary.
0
votes
1answer
32 views
Converting htaccess setting to BaseHTTPServer setting
So what I'm trying to do is allow users to embed an image on their site, and then that image be automatically replaced by an iframe with their button inside. The reason is to make it easy for users ...
0
votes
0answers
9 views
Is it possible to change the handler class on a running BaseHTTPServer?
I'd like to modify my handler. Currently, I have a BaseHTTPServer, configured to use a BaseHTTPRequestHandler subclass. I'd like to either modify or completely replace the handler, with a different ...
0
votes
1answer
91 views
TypeError: 'datetime.timedelta' object is not iterable-BaseHttpServer issue
I set up a basic python webserver using BaseHttpServer and am practicing querying data from a postgresql database. Everything is going swimmingly, but I have an error when I'm parsing the SQL results. ...
0
votes
1answer
123 views
Stopping threads spawned by BaseHTTPServer using ThreadingMixin
I have read on here on this post that using ThreadingMixin (from the SocketServer module), you are able to create a threaded server with BaseHTTPServer. I have tried it, and it does work. However, how ...
0
votes
0answers
72 views
Python redirecting index.html into another file for http
I could only find Python redirecting into different web site.
My question is after python receives the get request it should redirect to another file within the same directory. I am using ...
1
vote
0answers
222 views
Apache bench and python BaseHTTPServer broken pipe exception
I have a simple HTTP server implemented in python as follows:
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
class Handler(BaseHTTPRequestHandler):
def do_GET(self):
...
1
vote
1answer
201 views
How to manually close connection in BaseHTTPServer?
I have a script that sends a request to an HTTP server.
HTTP server script (snippet):
...
class MyHandler(BaseHTTPServer.BaseHTTPRequestHandler):
def do_GET(sa):
pdict = ...
0
votes
1answer
200 views
baseHTTPserver cannot use javascript library
I am building a python based web server ( Yes, python is a bad choice for web server, but this is the only choice I have There is another great choice for my purpose, e.g. PHP, but I am restricted to ...
4
votes
4answers
297 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 ...
1
vote
1answer
296 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, ...
2
votes
2answers
3k 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
3k 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 ...
2
votes
1answer
557 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) ...
0
votes
1answer
429 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
265 views
python basehttpserver: can i modify the 404 response?
Is it possible to modify the 404 response page sent from pythons basehttpserver library?
2
votes
3answers
2k 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
...
0
votes
2answers
877 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 ...
3
votes
2answers
3k 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
580 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
308 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 ...
7
votes
1answer
2k 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
2k 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 ...
5
votes
4answers
10k 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 ...
8
votes
1answer
6k views
Python - BaseHTTPServer.HTTPServer Concurrency & Threading
Is there a way to make BaseHTTPServer.HTTPServer be multi-threaded like SocketServer.ThreadingTCPServer?
4
votes
1answer
1k 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?
4
votes
6answers
6k 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 ...
9
votes
3answers
13k views
How to stop BaseHTTPServer.serve_forever() in a BaseHTTPRequestHandler subclass?
I am running my HTTPServer in a separate thread (using the threading module which has no way to stop threads...) and want to stop serving requests when the main thread also shuts down.
The Python ...