AttributeError: у объекта 'str' нет атрибута 'seek' с python - PullRequest
0 голосов
/ 22 апреля 2020

Получение "AttributeError: у объекта 'str' нет атрибута 'seek'" при выполнении приведенного ниже кода. Может кто-то указать, где проблема?

import re
import os
import time

regex = ' \[GC \((?<jvmGcCause>.*?)\).+?(?<jvmGcRecycletime>\d+\.\d+) secs\]'
read_line = True

def follow(thefile):
    thefile.seek(0,os.SEEK_END)
    while True:
        lines = thefile.readline()
        if not lines:
            time.sleep(0.1)
            continue
        yield lines

if __name__ == '__main__':
    logfile = r"/gc.log"
    loglines = follow(logfile)
    for line in loglines:
        match = re.search(regex, line)
        if match:
            print('jvmGcCause: ' + +match.group(1))
            print('jvmGcRecycletime: ' + match.group(2))

1 Ответ

3 голосов
/ 22 апреля 2020

In python seek - это метод файлового объекта, и вы пытаетесь применить его к строке. Сначала вы должны открыть файл и вызвать seek для объекта открытого файла.

Сделайте что-то вроде этого:

def follow(file_name):
    with open filename as the_file:
        the_file.seek(0, os.SEEK_END)
        while True:
            lines = the_file.readline()
            if not lines:
                time.sleep(0.1)
                continue
            yield lines
...