使用python发送http标头

时间:2011-11-29 17:40:29

标签: python html sockets client

我已经设置了一个小脚本,该脚本应该为客户端提供html。

import socket

sock = socket.socket()
sock.bind(('', 8080))
sock.listen(5)
client, adress = sock.accept()


print "Incoming:", adress
print client.recv(1024)
print

client.send("Content-Type: text/html\n\n")
client.send('<html><body></body></html>')

print "Answering ..."
print "Finished."

import os
os.system("pause")

但它在浏览器中显示为纯文本。你能说出我需要做什么吗?我只是在谷歌找不到帮助我的东西..

感谢。

2 个答案:

答案 0 :(得分:14)

响应标头应包含指示成功的响应代码。 在 Content-Type 行之前,添加:

client.send('HTTP/1.0 200 OK\r\n')

另外,为了使测试更加明显,请在页面中添加一些内容:

client.send('<html><body><h1>Hello World</body></html>')

发送响应后,请使用以下命令关闭连接:

client.close()

sock.close()

正如其他海报所述,请使用\r\n代替\n终止每一行。

那些添加物,我能够成功运行测试。在浏览器中,我输入了localhost:8080

以下是所有代码:

import socket

sock = socket.socket()
sock.bind(('', 8080))
sock.listen(5)
client, adress = sock.accept()

print "Incoming:", adress
print client.recv(1024)
print

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()

print "Answering ..."
print "Finished."

sock.close()

答案 1 :(得分:0)

webob也会为您提供脏http详细信息

from webob import Response
....

client.send(str(Response("<html><body></body></html>")))