首页 > 编程语言 > 详细

python响应websocket请求输出动态日志

时间:2020-12-24 21:18:31      阅读:54      评论:0      收藏:0      [点我收藏+]
处理线程中打开文件,每次读取一行并记录当前读取位置,没有下一行让出一秒
logfile = ./logs/%s_%s.log % (appName, time.strftime(%Y_%m_%d)) file = open(logfile, r, encoding=utf-8) while True: where = file.tell() line = file.readline() if not line: time.sleep(1) file.seek(where) else: send_data(conn, line.strip().encode(utf-8))

 

python响应websocket请求输出动态日志

原文:https://www.cnblogs.com/6min/p/14185660.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!