zoukankan      html  css  js  c++  java
  • 一个简单的WebServer,socket+threading

    一个简单的WebServer

    
    import socket
    import threading
    
    body = '<h1> web server </h1>'
    
    response_params = [
        'HTTP/1.0 200 OK',
        'Content-Type: text/html;charset=utf-8',
        'Content-Length: {}
    '.format(len(body.encode())),
        body,
    ]
    
    response = '
    '.join(response_params)
    
    def handle(conn):
        request = ''
        while '
    
    ' not in request and '
    
    ' not in request:
            request += conn.recv(1024).decode()
        print(request)
        conn.send(response.encode())
        conn.close()
    
    if __name__ == '__main__':
        sk = socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0)
        address = ("127.0.0.1", 8001)
        sk.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR,1) # 端口复用
        sk.bind(address)
        sk.listen(5)
        sk.setblocking(0) # 非阻塞
        try:
            while True:
                try:
                    conn,addr = sk.accept()
                except socket.error as e:
                    continue
                t = threading.Thread(target=handle,args=(conn,))
                t.start()
        finally:
            sk.close()
    

    浏览器访问显示WebServer,服务端输出request

  • 相关阅读:
    欧拉公式求四面体的体积
    欧拉公式求四面体的体积
    I
    I
    闭包传递(floyed)
    闭包传递(floyed)
    Python hypot() 函数
    Python cos() 函数
    Python atan2() 函数
    Python atan() 函数
  • 原文地址:https://www.cnblogs.com/sfencs-hcy/p/10980923.html
Copyright © 2011-2022 走看看