I've read in data from a file using a GET request through a browser
[code]
data= open(path)
data2= file.read()
return data2
[icode]
and returned it to the console just fine. how do I post this same data to the browser I used as a client for the GET request? socket.send(<htmlcode here>)? what...