python响应websocket请求输出动态日志
2021-03-09 02:30
标签:打开文件 文件 code readline read line class python log python响应websocket请求输出动态日志 标签:打开文件 文件 code readline read line class python log 原文地址:https://www.cnblogs.com/6min/p/14185660.html处理线程中打开文件,每次读取一行并记录当前读取位置,没有下一行让出一秒
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请求输出动态日志
文章链接:http://soscw.com/index.php/essay/62094.html