摘要: socket server import socket def handle_request(client): buf = client.recv(1024) client.send(bytes('HTTP/1.1 200 OK\r\n\r\n', encoding='utf-8')) client 阅读全文
posted @ 2019-10-21 23:26 python-abc 阅读(292) 评论(0) 推荐(0) 编辑