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.

Possible Duplicate:
Get last n lines of a file with Python, similar to tail

Hello,

How can I have Python return the last n lines of a file without reading it line by line?

share|improve this question
This is a duplicate: stackoverflow.com/questions/136168/… – Nicholas Riley Jan 26 '10 at 0:37
Did not see the duplicate. Thanks (will close). – Arrieta Jan 26 '10 at 0:39

marked as duplicate by Nicholas Riley, Arrieta, bernie, pavium, Daniel Vassallo Jan 26 '10 at 0:57

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

Something like this:

  • Use seek() to get something like the last 4096 bytes of a file.
  • See how many newlines you have in those bytes. If you have n or more, then you're done. If you have fewer, then read the previous 4096 bytes until you're done.

Not sure if there's a built-in way to do this.

share|improve this answer
+1 you beat me to it – just somebody Jan 26 '10 at 0:36

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