A bit of googling found me this: http://www.linux-support.com/cms/implementation-of-tail-in-python/
import time
import sys
def tail_f(file):
interval = 1.0
while True:
where = file.tell()
line = file.readline()
if not line:
time.sleep(interval)
file.seek(where)
else:
yield line
--
https://mail.python.org/mailman/listinfo/python-list
