I'm working on a simple proxy in python that takes a HTTP GET request from a browser, queries the correct website and returns the data (html, css, photos) to the client. I have it working, but it take an exorbitant amount of time to read the data back from the external web server and send it back to the client. Below is (what I think is) the relevant code:
tempSocket.send(requestToWebpage)
tempList = []
while 1:
print "waiting for data from website..."
data = tempSocket.recv(bufferSize)
if not data:
break
else:
tempList.append(data)
tempResponse = ''.join(tempList)
print "closing temp socket..."
tempSocket.close()
splitResponse = tempResponse.partition("\r\n")
response = splitResponse[0] + "\r\n" + "Proxy-connection: close\r\n" + splitResponse[2]
print "sending results back..."
newConnection.send(response)
newConnection.close()
The proxy is running on my own machine (as is the client browser), which is Windows 7 64-bit. I have a decent wireless connection to the internet. Currently it takes upwards of several minutes to receive the results of each GET request and transmit it to the client. By watching the print statements, I've noticed that most of the time seems to be spend in the while loop (especially the last loop through it), but the other print messages also take way longer to appear than it seems like they should.
Any ideas on what is going on and suggestions to improve the speed?

tempList.append(data)tonewConnection.send(data). – Marcus Sep 18 '12 at 2:20