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

模拟服务器返回html

时间:2018-11-20 13:32:18      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:index   accept   open   cal   and   \n   cli   time()   time   

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‘))
f = open(‘index.html‘,‘r‘,encoding=‘utf-8‘)
data = f.read()
f.close()
import time
r = str(time.time())
data.replace(‘@@@@@‘,r)
client.send(data.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()
handle_request(connection)
connection.close()
if __name__ == ‘__main__‘:
main()

模拟服务器返回html

标签:index   accept   open   cal   and   \n   cli   time()   time   

原文地址:https://www.cnblogs.com/rongye/p/9987905.html

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