当前位置:   article > 正文

Python分析动态更新的日志文件_python动态读取log文件

python动态读取log文件

读取动态更新的日志文件

def read_file(filename, content, times):
    """
    统计动态更新的文件中指定内容出现次数
    :param filename: 文件名
    :param content: 匹配内容
    :param times: 匹配次数
    :return: 
    """
    count = 0
    with open(filename, 'r') as fp:
        while True:
            flag = fp.tell()
            line = fp.readline()
            if not line:
                time.sleep(1)
                fp.seek(flag)
            else:
                # print(line)
                if re.search(content, line):
                    count += 1
                if count == times:
                    break       
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/490047
推荐阅读
相关标签
  

闽ICP备14008679号