码迷,mamicode.com
首页 > Web开发 > 详细

web框架根本Socket

时间:2017-10-16 16:35:44      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:nec   span   http   blog   and   logs   oca   png   his   

python 3 案例写法

 

web框架的本质 socket

import socket

def handle_request(client):
    buf = client.recv(1024)
    client.send("HTTP/1.1 200 OK\r\n\r\n".encode(utf-8))
    client.send("<h1 style=‘color:red‘>Hello, World  send  This is and me python project</h1>".encode(utf-8))

def main():
    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    sock.bind((localhost,8000))
    sock.listen(5)

    while True:
        connection, address = sock.accept()
        print(connection, address)
        handle_request(connection)
        connection.close()

if __name__ == __main__:
    main()

网站显示:

技术分享


 

web框架根本Socket

标签:nec   span   http   blog   and   logs   oca   png   his   

原文地址:http://www.cnblogs.com/Mjonj/p/7676962.html

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