这个问题说明了一切。
上下文:
想象一个URL路由,我可以输入" Ping",按一个按钮,服务器回答" Pong"在纯Python 3?
答案 0 :(得分:2)
您可以创建如下连接:
# create an INET, STREAMing socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# now connect to the web server on port 80 - the normal http port
s.connect(("www.python.org", 80))
您还可以在documentation。
中获取更多信息