web框架 源码

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import socket
def handle_request(client):
    buf=client.recv(1024)
    ckient.send('HTTP/1.1 200 OK\r\n\r\n')
    client.send('Hello,world')
 
def main():
    sock=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
    sock.bind(('localhhost',8080))
    sock.listen(5)
 
    while 1:
        con,addr=sock.accept()
        handle_request(con)
        con.close()
 
if __name__=='__main__':
    main()

 

posted @   ezway  阅读(283)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示