Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'else:': 0.03; 'subject:text': 0.05; 'subject:file': 0.07; 'sys': 0.07; 'line:': 0.09; 'subject:How': 0.10; 'def': 0.12; 'googling': 0.16; 'true:': 0.16; 'bit': 0.19; 'import': 0.22; 'this:': 0.26; 'header:In- Reply-To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; 'received:google.com': 0.35; 'yield': 0.36; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'subject:read': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=NWHj3VoScGcSt1VcqmBWk3vuqaJFRnY00URqGgzBvEA=; b=DdpP+9Q4jvdeNQgNnxkUqAaitT3CGH3bv8hswwcbVjs/r5+fHUXNdtwFuM6i7F50k+ FHWPu1pt5gse/w/xavvFAWWAKQaT6QJoRmPwT2GA/y3Q9Q81uFMPUDQ+6QDKfLw1zm5a xeMIfm2E75fdxBqVmPGrsLUAqonqf78BhVMmhgS+W1QEW/Q0T38Nd3Hy3oB+22HaDbh/ d53sqxC43B1Coqzl41LCwj5/dbmAFL6ZUXQXQQCoVwVaKC3OwyNusccC9ShY8jB+jur4 lBuhBatN0rZnVAz394yz8HMVarCgHYiSQbkoGdO75FPXh82gluD7H6heEeopgRH9jU3E KjJg== MIME-Version: 1.0 X-Received: by 10.180.189.49 with SMTP id gf17mr11035548wic.23.1380970925925; Sat, 05 Oct 2013 04:02:05 -0700 (PDT) In-Reply-To: <04ee91f9-1cbf-4364-bca3-da25aa4db45f@googlegroups.com> References: <04ee91f9-1cbf-4364-bca3-da25aa4db45f@googlegroups.com> Date: Sat, 5 Oct 2013 13:02:05 +0200 Subject: Re: How to streamingly read text file and display whenever updated text From: Joost Molenaar To: python-list@python.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 16 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1380970927 news.xs4all.nl 15896 [2001:888:2000:d::a6]:45415 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:56178 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