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

2021-03-09 02:30

阅读:335

标签:打开文件   文件   code   readline   read   line   class   python   log   

处理线程中打开文件,每次读取一行并记录当前读取位置,没有下一行让出一秒
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请求输出动态日志

标签:打开文件   文件   code   readline   read   line   class   python   log   

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


评论


亲,登录后才可以留言!