码迷,mamicode.com
首页 > 其他好文 > 详细

wgsi实现了socket-server功能

时间:2020-02-21 12:53:22      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:end   bind   cli   发送请求   bin   pen   index   def   with   

#_author:来童星
#date:2020/2/21
import socket

def handle_request(client):
#将发送过来的信息拿到
buf=client.recv(1024)
#服务器的响应信息
client.send("HTTP/1.1 200 ok\r\n\r\n".encode(‘utf-8‘))
with open(‘index.html‘,‘rb‘)as f:
data=f.read()
client.send(data)
#服务器将下面信息发送给浏览器,让浏览器渲染
# client.sent("<h1 style=‘color:red‘>hello star</h1>").encode(‘utf-8‘)

def main():
#main函数一旦执行,会创建一个sockek对象
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.bind((‘‘,8001))
sock.listen(5)


while True:
#如果浏览器没有发送请求,会一直卡在这里
connection,address=sock.accept()
print(‘port 8001 is running‘)
#处理请求
handle_request(connection)
connection.close()
if __name__==‘__main__‘:
main()

wgsi实现了socket-server功能

标签:end   bind   cli   发送请求   bin   pen   index   def   with   

原文地址:https://www.cnblogs.com/startl/p/12340801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!