我正在尝试使用套接字库编写一个 python Web 服务器。我已经通过几个来源,无法弄清楚为什么我编写的代码不起作用。其他人运行了非常相似的代码并声称它有效。我是 python 新手,所以我可能会遗漏一些简单的东西。
它现在工作的唯一方法是将数据变量发送回客户端。浏览器打印原始 GET 请求。当我尝试发送 HTTP 响应时,连接超时。
import socket
##Creates several variables, including the host name, the port to use
##the size of a transmission, and how many requests can be handled at once
host = ''
port = 8080
backlog = 5
size = 1024
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((host,port))
s.listen(backlog)
while 1:
client, address = s.accept()
data = client.recv(16)
if data:
client.send('HTTP/1.0 200 OK\r\n')
client.send("Content-Type: text/html\r\n\r\n")
client.send('<html><body><h1>Hello World</body></html>')
client.close()
s.close()