Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要通过持久连接连接到我的服务器(不是 http),以加快某些事情的速度。我可以举一个如何做到这一点的例子吗?
您可以使用套接字库,文档中有很多示例。
>>> from socket import socket >>> sock = socket() >>> sock.connect(("173.194.32.41", 80)) >>> sock.send("Some stuff\r\n\r\n") 14 >>> sock.recv(12) 'HTTP/1.0 400'
python标准库中还有telnetlib。