Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to extract the last line from a number of very large (several hundred megabyte) text files to get certain data. Currently, I am using python to cycle through all the lines until the file is empty and then I process the last line returned, but I am certain there is a more efficient way to do this.

What is the best way to retrieve just the last line of a text file using python?

share|improve this question
possible duplicate of Get last n lines of a file with Python, similar to tail – Adam Rosenfield Aug 23 '11 at 20:29
Is this a Python question, or would an answer using awk or sed be just as good? – Eric Wilson Aug 23 '11 at 20:32
1  
You need to supply a vital piece of information (which many answers have totally ignored): the encoding of your file. – John Machin Aug 23 '11 at 21:35
Only a multibyte encoding (e.g. UTF-16 or UTF-32) will break the algorithms given. – Mike DeSimone Aug 24 '11 at 5:07
@Eric, this is at my office which is a windows environment, so Python is best, though powershell could work. – TimothyAWiseman Aug 24 '11 at 20:06

10 Answers

up vote 5 down vote accepted

You could take a look at: Get last n lines of a file with Python, similar to tail

It is really close to what you need.

share|improve this answer
Thanks, that got me very close and a small bit of tweaking got exactly what I need. – TimothyAWiseman Aug 24 '11 at 20:04

Use the file's seek method with a negative offset and whence=os.SEEK_END to read a block from the end of the file. Search that block for the last line end character(s) and grab all the characters after it. If there is no line end, back up farther and repeat the process.

def last_line(in_file, block_size=1024, ignore_ending_newline=False):
    suffix = ""
    in_file.seek(0, os.SEEK_END)
    in_file_length = in_file.tell()
    seek_offset = 0

    while(-seek_offset < in_file_length):
        # Read from end.
        seek_offset -= block_size
        if -seek_offset > in_file_length:
            # Limit if we ran out of file (can't seek backward from start).
            block_size -= -seek_offset - in_file_length
            if block_size == 0:
                break
            seek_offset = -in_file_length
        in_file.seek(seek_offset, os.SEEK_END)
        buf = in_file.read(block_size)

        # Search for line end.
        if ignore_ending_newline and seek_offset == -block_size and buf[-1] == '\n':
            buf = buf[:-1]
        pos = buf.rfind('\n')
        if pos != -1:
            # Found line end.
            return buf[pos+1:] + suffix

        suffix = buf + suffix

    # One-line file.
    return suffix

Note that this will not work on things that don't support seek, like stdin or sockets. In those cases, you're stuck reading the whole thing (like the tail command does).

share|improve this answer

Not the straight forward way, but probably much faster than a simple Python implementation:

line = subprocess.check_output(['tail', '-1', filename])
share|improve this answer

If you do know the maximal length of a line, you can do

def getLastLine(fname, maxLineLength=80):
    fp=file(fname, "rb")
    fp.seek(-maxLineLength-1, 2) # 2 means "from the end of the file"
    return fp.readlines()[-1]

This works on my windows machine. But I do not know what happens on other platforms if you open a text file in binary mode. The binary mode is needed if you want to use seek().

share|improve this answer
2  
And if you don't know the maximum line length? – Adam Rosenfield Aug 23 '11 at 20:28
1  
both this and mike's answer are "the right way to do it", but have issues for anything other than simple (single byte, eg ASCII) text encodings. unicode can have multi-byte characters, so in that case (1) you don't know the relative offset in bytes for a given maximum length in characters and (2) you may seek into "the middle" of a character. – andrew cooke Aug 23 '11 at 20:31
@Adam, you can usually pick a number that is greater than any reasonable line length even if it isn't a guaranteed maximum. If you absolutely can't make any assumptions or accept a truncated line, you have no choice but to read the whole file. – Mark Ransom Aug 23 '11 at 20:34
1  
@andrew, the end-of-line byte code in UTF-8 will still be unique even if you start in the middle of a character. That's one of the beauties of UTF-8. – Mark Ransom Aug 23 '11 at 20:35
1  
@andrew: UTF-8 can sync midstream because the bytes in the representation of a code point >= U+80 all have the high bit set. Therefore, if the high bit is clear, it's a low-ASCII character. This makes us parser writers happy. On the other hand, there are formats such as Shift-JIS, which encode non-low-ASCII characters as two bytes, but only the first byte is guaranteed to have a high bit set. Luckily, they didn't use control characters for the second byte. – Mike DeSimone Aug 24 '11 at 5:02
show 6 more comments

Seek to the end of the file minus 100 bytes or so. Do a read and search for a newline. If here is no newline, seek back another 100 bytes or so. Lather, rinse, repeat. Eventually you'll find a newline. The last line begins immediately after that newline.

Best case scenario you only do one read of 100 bytes.

share|improve this answer

If you can pick a reasonable maximum line length, you can seek to nearly the end of the file before you start reading.

myfile.seek(-max_line_length, os.SEEK_END)
line = myfile.readlines()[-1]
share|improve this answer
I think you have to go one byte further in seek, because readlines() includes the line terminator. – rocksportrocker Aug 23 '11 at 20:30

You shouldn't have to loop through all the lines. Can you just read the files into a list and index the last line?

I found this example:

http://www.daniweb.com/software-development/python/threads/121557

share|improve this answer

Could you load the file into a mmap, then use mmap.rfind(string[, start[, end]]) to find the second last EOL character in the file? A seek to that point in the file should point you to the last line I would think.

share|improve this answer

The inefficiency here is not really due to Python, but to the nature of how files are read. The only way to find the last line is to read the file in and find the line endings. However, the seek operation may be used to skip to any byte offset in the file. You can, therefore begin very close to the end of the file, and grab larger and larger chunks as needed until the last line ending is found:

from os import SEEK_END

def get_last_line(file):
  CHUNK_SIZE = 1024 # Would be good to make this the chunk size of the filesystem

  last_line = ""

  while True:
    # We grab chunks from the end of the file towards the beginning until we 
    # get a new line
    file.seek(-len(last_line) - CHUNK_SIZE, SEEK_END)
    chunk = file.read(CHUNK_SIZE)

    if not chunk:
      # The whole file is one big line
      return last_line

    if not last_line and chunk.endswith('\n'):
      # Ignore the trailing newline at the end of the file (but include it 
      # in the output).
      last_line = '\n'
      chunk = chunk[:-1]

    nl_pos = chunk.rfind('\n')
    # What's being searched for will have to be modified if you are searching
    # files with non-unix line endings.

    last_line = chunk[nl_pos + 1:] + last_line

    if nl_pos == -1:
      # The whole chunk is part of the last line.
      continue

    return last_line
share|improve this answer
file.seek(-n, os.SEEK_END) will raise IOError: [Errno 22] Invalid argument if n is greater than the file size. – Mike DeSimone Aug 23 '11 at 21:16
lines = file.readlines()
fileHandle.close()
last_line = lines[-1]
share|improve this answer
Gah! Don't ever do lines[len(lines) -1]. That's an O(n) operation. lines[-1] will get the last one. Besides, this isn't any better than the approach he's already using. – g.d.d.c Aug 23 '11 at 20:20
Oops, my mistake! This method actually is more efficient though. – Jon Martin Aug 23 '11 at 20:21
2  
@g.d.d.c: lines[len(lines)-1] is not O(n) (unless lines is a user-defined type with an O(n) implementation of __len__, but that's not the case here). While it's bad style, lines[len(lines)-1] has a practically identical runtime cost as lines[-1]; the only difference is whether the index calculation is done explicitly in script or implicitly by the runtime. – Adam Rosenfield Aug 23 '11 at 20:23
I stand corrected. :) – g.d.d.c Aug 23 '11 at 20:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.